- Timestamp:
- Sep 21, 2009 12:51:05 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r23180 r23187 196 196 mClipboardMode = ClipboardMode_Bidirectional; 197 197 mGuestPropertyNotificationPatterns = ""; 198 198 199 199 mFirmwareType = FirmwareType_Bios; 200 200 } … … 5655 5655 mData->m_pMachineConfigFile->strDescription = mUserData->mDescription; 5656 5656 mData->m_pMachineConfigFile->strOsType = mUserData->mOSTypeId; 5657 5657 5658 5658 if ( mData->mMachineState == MachineState_Saved 5659 5659 || mData->mMachineState == MachineState_Restoring … … 8147 8147 * (this is expected by Console::TakeSnapshot() and 8148 8148 * Console::saveStateThread()) */ 8149 setMachineState(mSnapshotData.mLastState); 8149 if (mSnapshotData.mLastState != Running) /** @todo Live Save: Quick hack. */ 8150 setMachineState(mSnapshotData.mLastState); 8150 8151 8151 8152 return endTakingSnapshot(aSuccess);
Note:
See TracChangeset
for help on using the changeset viewer.