Changeset 93706 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 11, 2022 7:14:49 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149877
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r93704 r93706 98 98 { 99 99 USAGE_INVALID = 0, 100 USAGE_REGISTERVM,101 USAGE_UNREGISTERVM,102 USAGE_CREATEVM,103 100 USAGE_STARTVM, 104 101 USAGE_CONTROLVM, … … 109 106 USAGE_MODIFYMEDIUM, 110 107 USAGE_CLONEMEDIUM, 111 USAGE_MOVEVM,112 108 USAGE_CREATEHOSTIF, 113 109 USAGE_REMOVEHOSTIF, … … 150 146 USAGE_MEDIUMENCCHKPWD, 151 147 USAGE_USBDEVSOURCE, 152 USAGE_CLOUDPROFILE,153 148 /* Insert new entries before this line, but only if it is not an option 154 149 * to go for the new style command and help handling (see e.g. extpack, -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r93558 r93706 66 66 67 67 if (a->argc != 1) 68 return errorSyntax( USAGE_REGISTERVM,Misc::tr("Incorrect number of parameters"));68 return errorSyntax(Misc::tr("Incorrect number of parameters")); 69 69 70 70 ComPtr<IMachine> machine; … … 125 125 VMName = ValueUnion.psz; 126 126 else 127 return errorSyntax( USAGE_UNREGISTERVM,Misc::tr("Invalid parameter '%s'"), ValueUnion.psz);127 return errorSyntax(Misc::tr("Invalid parameter '%s'"), ValueUnion.psz); 128 128 break; 129 129 … … 132 132 { 133 133 if (RT_C_IS_PRINT(c)) 134 return errorSyntax( USAGE_UNREGISTERVM,Misc::tr("Invalid option -%c"), c);135 return errorSyntax( USAGE_UNREGISTERVM,Misc::tr("Invalid option case %i"), c);134 return errorSyntax(Misc::tr("Invalid option -%c"), c); 135 return errorSyntax(Misc::tr("Invalid option case %i"), c); 136 136 } 137 137 if (c == VERR_GETOPT_UNKNOWN_OPTION) 138 return errorSyntax( USAGE_UNREGISTERVM,Misc::tr("unknown option: %s\n"), ValueUnion.psz);138 return errorSyntax(Misc::tr("unknown option: %s\n"), ValueUnion.psz); 139 139 if (ValueUnion.pDef) 140 return errorSyntax( USAGE_UNREGISTERVM,"%s: %Rrs", ValueUnion.pDef->pszLong, c);141 return errorSyntax( USAGE_UNREGISTERVM,Misc::tr("error: %Rrs"), c);140 return errorSyntax("%s: %Rrs", ValueUnion.pDef->pszLong, c); 141 return errorSyntax(Misc::tr("error: %Rrs"), c); 142 142 } 143 143 } … … 145 145 /* check for required options */ 146 146 if (!VMName) 147 return errorSyntax( USAGE_UNREGISTERVM,Misc::tr("VM name required"));147 return errorSyntax(Misc::tr("VM name required")); 148 148 149 149 ComPtr<IMachine> machine; … … 250 250 251 251 default: 252 return errorGetOpt( USAGE_CREATEVM,c, &ValueUnion);252 return errorGetOpt(c, &ValueUnion); 253 253 } 254 254 } … … 256 256 /* check for required options */ 257 257 if (bstrName.isEmpty()) 258 return errorSyntax( USAGE_CREATEVM,Misc::tr("Parameter --name is required"));258 return errorSyntax(Misc::tr("Parameter --name is required")); 259 259 260 260 do … … 354 354 pszSrcName = ValueUnion.psz; 355 355 else 356 return errorSyntax( USAGE_MOVEVM,Misc::tr("Invalid parameter '%s'"), ValueUnion.psz);356 return errorSyntax(Misc::tr("Invalid parameter '%s'"), ValueUnion.psz); 357 357 break; 358 358 359 359 default: 360 return errorGetOpt( USAGE_MOVEVM,c, &ValueUnion);360 return errorGetOpt(c, &ValueUnion); 361 361 } 362 362 } … … 370 370 /* Check for required options */ 371 371 if (!pszSrcName) 372 return errorSyntax( USAGE_MOVEVM,Misc::tr("VM name required"));372 return errorSyntax(Misc::tr("VM name required")); 373 373 374 374 /* Get the machine object */ … … 2132 2132 break; 2133 2133 default: 2134 return errorGetOpt( USAGE_CLOUDPROFILE,c, &ValueUnion);2134 return errorGetOpt(c, &ValueUnion); 2135 2135 } 2136 2136 } … … 2138 2138 /* check for required options */ 2139 2139 if (bstrProvider.isEmpty()) 2140 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --provider is required"));2140 return errorSyntax(Misc::tr("Parameter --provider is required")); 2141 2141 if (bstrProfile.isEmpty()) 2142 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --profile is required"));2142 return errorSyntax(Misc::tr("Parameter --profile is required")); 2143 2143 2144 2144 ComPtr<IVirtualBox> pVirtualBox = a->virtualBox; … … 2188 2188 /* check for required options */ 2189 2189 if (bstrProvider.isEmpty()) 2190 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --provider is required"));2190 return errorSyntax(Misc::tr("Parameter --provider is required")); 2191 2191 if (bstrProfile.isEmpty()) 2192 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --profile is required"));2192 return errorSyntax(Misc::tr("Parameter --profile is required")); 2193 2193 2194 2194 ComPtr<IVirtualBox> pVirtualBox = a->virtualBox; … … 2248 2248 /* check for required options */ 2249 2249 if (bstrProvider.isEmpty()) 2250 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --provider is required"));2250 return errorSyntax(Misc::tr("Parameter --provider is required")); 2251 2251 if (bstrProfile.isEmpty()) 2252 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --profile is required"));2252 return errorSyntax(Misc::tr("Parameter --profile is required")); 2253 2253 2254 2254 /* … … 2308 2308 break; 2309 2309 default: 2310 return errorGetOpt( USAGE_CLOUDPROFILE,c, &ValueUnion);2310 return errorGetOpt(c, &ValueUnion); 2311 2311 } 2312 2312 } … … 2346 2346 /* check for required options */ 2347 2347 if (bstrProvider.isEmpty()) 2348 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --provider is required"));2348 return errorSyntax(Misc::tr("Parameter --provider is required")); 2349 2349 if (bstrProfile.isEmpty()) 2350 return errorSyntax( USAGE_CLOUDPROFILE,Misc::tr("Parameter --profile is required"));2350 return errorSyntax(Misc::tr("Parameter --profile is required")); 2351 2351 2352 2352 ComPtr<IVirtualBox> pVirtualBox = a->virtualBox;
Note:
See TracChangeset
for help on using the changeset viewer.