Changeset 36682 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Apr 15, 2011 11:22:33 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r36673 r36682 3227 3227 IProgress **aProgress) 3228 3228 { 3229 CheckComArgStrNotEmptyOrNull(aType); 3229 3230 Utf8Str strType(aType); 3230 3231 Utf8Str strEnvironment(aEnvironment); 3231 3232 3232 /* "emergencystop" doesn't need the session, so skip the checks/interface 3233 3233 * retrieval. This code doesn't quite fit in here, but introducing a … … 3236 3236 if (strType != "emergencystop") 3237 3237 CheckComArgNotNull(aSession); 3238 CheckComArgStrNotEmptyOrNull(aType);3239 3238 CheckComArgOutPointerValid(aProgress); 3240 3239 … … 3277 3276 rc = progress->init(mParent, 3278 3277 static_cast<IMachine*>(this), 3279 BstrFmt(tr("Starting VM \"%s\" (%s)"), aType).raw(),3278 BstrFmt(tr("Starting VM \"%s\" (%s)"), mUserData->s.strName.c_str(), strType.c_str()).raw(), 3280 3279 TRUE /* aCancelable */, 3281 3280 fTeleporterEnabled ? 20 : 10 /* uTotalOperationsWeight */,
Note:
See TracChangeset
for help on using the changeset viewer.