Changeset 26908 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 1, 2010 12:49:28 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58192
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r26768 r26908 4937 4937 Utf8Str idStr = mData->mUuid.toString(); 4938 4938 # ifdef RT_OS_WINDOWS /** @todo drop this once the RTProcCreate bug has been fixed */ 4939 const char * args[] = {szPath, "--startvm", idStr.c_str(), 0 };4939 const char * args[] = {szPath, "--startvm", idStr.c_str(), "--no-startvm-errormsgbox", 0 }; 4940 4940 # else 4941 4941 Utf8Str strName = mUserData->mName; 4942 const char * args[] = {szPath, "--comment", strName.c_str(), "--startvm", idStr.c_str(), 0 };4942 const char * args[] = {szPath, "--comment", strName.c_str(), "--startvm", idStr.c_str(), "--no-startvm-errormsgbox", 0 }; 4943 4943 # endif 4944 4944 vrc = RTProcCreate(szPath, args, env, 0, &pid);
Note:
See TracChangeset
for help on using the changeset viewer.