Changeset 61893 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Jun 27, 2016 11:31:20 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r60491 r61893 331 331 " [--exe <path to executable>] [--timeout <msec>]\n" 332 332 " [-E|--putenv <NAME>[=<VALUE>]] [--unquoted-args]\n" 333 " [--ignore-operhaned-processes] [-- no-profile]\n"333 " [--ignore-operhaned-processes] [--profile]\n" 334 334 " [--no-wait-stdout|--wait-stdout]\n" 335 335 " [--no-wait-stderr|--wait-stderr]\n" … … 342 342 " [--exe <path to executable>] [--timeout <msec>]\n" 343 343 " [-E|--putenv <NAME>[=<VALUE>]] [--unquoted-args]\n" 344 " [--ignore-operhaned-processes] [-- no-profile]\n"344 " [--ignore-operhaned-processes] [--profile]\n" 345 345 " -- <program/arg0> [argument1] ... [argumentN]]\n" 346 346 "\n"); … … 1313 1313 { 1314 1314 kGstCtrlRunOpt_IgnoreOrphanedProcesses = 1000, 1315 kGstCtrlRunOpt_NoProfile, 1315 kGstCtrlRunOpt_NoProfile, /** @todo Deprecated and will be removed soon; use kGstCtrlRunOpt_Profile instead, if needed. */ 1316 kGstCtrlRunOpt_Profile, 1316 1317 kGstCtrlRunOpt_Dos2Unix, 1317 1318 kGstCtrlRunOpt_Unix2Dos, … … 1329 1330 { "--unquoted-args", 'u', RTGETOPT_REQ_NOTHING }, 1330 1331 { "--ignore-operhaned-processes", kGstCtrlRunOpt_IgnoreOrphanedProcesses, RTGETOPT_REQ_NOTHING }, 1331 { "--no-profile", kGstCtrlRunOpt_NoProfile, RTGETOPT_REQ_NOTHING }, 1332 { "--no-profile", kGstCtrlRunOpt_NoProfile, RTGETOPT_REQ_NOTHING }, /** @todo Deprecated. */ 1333 { "--profile" kGstCtrlRunOpt_Profile, RTGETOPT_REQ_NOTHING }, 1332 1334 /* run only: 6 - options */ 1333 1335 { "--dos2unix", kGstCtrlRunOpt_Dos2Unix, RTGETOPT_REQ_NOTHING }, … … 1387 1389 1388 1390 case kGstCtrlRunOpt_NoProfile: 1389 aCreateFlags.push_back(ProcessCreateFlag_NoProfile); 1391 /** @todo Deprecated, will be removed. */ 1392 RTPrintf("Warning: Deprecated option \"--no-profile\" specified\n"); 1393 break; 1394 1395 case kGstCtrlRunOpt_Profile: 1396 aCreateFlags.push_back(ProcessCreateFlag_Profile); 1390 1397 break; 1391 1398
Note:
See TracChangeset
for help on using the changeset viewer.