Changeset 38056 in vbox for trunk/src/VBox
- Timestamp:
- Jul 19, 2011 9:03:26 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r38014 r38056 1456 1456 || (iHighestId >= mHWData->mCPUCount)) 1457 1457 return setError(E_INVALIDARG, 1458 tr("CPU hotplugging can't be disabled because the maximum number of CPUs is not equal to the amount of CPUs attached \n"));1458 tr("CPU hotplugging can't be disabled because the maximum number of CPUs is not equal to the amount of CPUs attached")); 1459 1459 1460 1460 setModified(IsModified_MachineData); … … 6255 6255 CheckComArgOutPointerValid(pProgress); 6256 6256 6257 /** @todo r=klaus disabled as there are apparently still cases which are 6258 * not handled correctly */ 6259 if (mode == CloneMode_MachineAndChildStates) 6260 return setError(VBOX_E_NOT_SUPPORTED, 6261 tr("The clone mode \"Machine and child states\" is not yet supported. Please try again in the next VirtualBox maintenance update")); 6262 6257 6263 /* Convert the options. */ 6258 6264 RTCList<CloneOptions_T> optList; … … 6264 6270 if (!isSnapshotMachine()) 6265 6271 return setError(E_INVALIDARG, 6266 tr("Linked clone can only be created from a snapshot \n"));6272 tr("Linked clone can only be created from a snapshot")); 6267 6273 if (mode != CloneMode_MachineState) 6268 6274 return setError(E_INVALIDARG, 6269 tr("Linked clone can only be created for a single machine state \n"));6275 tr("Linked clone can only be created for a single machine state")); 6270 6276 } 6271 6277 AssertReturn(!(optList.contains(CloneOptions_KeepAllMACs) && optList.contains(CloneOptions_KeepNATMACs)), E_INVALIDARG);
Note:
See TracChangeset
for help on using the changeset viewer.