Changeset 55214 in vbox for trunk/src/VBox/Frontends/VBoxAutostart
- Timestamp:
- Apr 13, 2015 3:53:01 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99520
- Location:
- trunk/src/VBox/Frontends/VBoxAutostart
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostartStop.cpp
r43967 r55214 51 51 { 52 52 HRESULT rc = S_OK; 53 ComPtr<IMachine> machine; 53 54 ComPtr<IProgress> progress; 54 55 … … 83 84 } 84 85 85 CHECK_ERROR(console, SaveState(progress.asOutParam())); 86 CHECK_ERROR(console, COMGETTER(Machine)(machine.asOutParam())); 87 CHECK_ERROR(machine, SaveState(progress.asOutParam())); 86 88 if (FAILED(rc)) 87 89 { -
trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostartUtils.cpp
r43967 r55214 48 48 case MachineState_Saved: 49 49 return "saved"; 50 case MachineState_Teleported: 51 return "teleported"; 50 52 case MachineState_Aborted: 51 53 return "aborted"; 52 case MachineState_Teleported:53 return "teleported";54 54 case MachineState_Running: 55 55 return "running"; … … 58 58 case MachineState_Stuck: 59 59 return fShort ? "gurumeditation" : "guru meditation"; 60 case MachineState_Teleporting: 61 return "teleporting"; 60 62 case MachineState_LiveSnapshotting: 61 63 return fShort ? "livesnapshotting" : "live snapshotting"; 62 case MachineState_Teleporting:63 return "teleporting";64 64 case MachineState_Starting: 65 65 return "starting"; … … 74 74 case MachineState_TeleportingIn: 75 75 return fShort ? "teleportingin" : "teleporting (incoming)"; 76 case MachineState_DeletingSnapshotOnline: 77 return fShort ? "deletingsnapshotlive" : "deleting snapshot live"; 78 case MachineState_DeletingSnapshotPaused: 79 return fShort ? "deletingsnapshotlivepaused" : "deleting snapshot live paused"; 80 case MachineState_OnlineSnapshotting: 81 return fShort ? "onlinesnapshotting" : "online snapshotting"; 76 82 case MachineState_RestoringSnapshot: 77 83 return fShort ? "restoringsnapshot" : "restoring snapshot"; 78 84 case MachineState_DeletingSnapshot: 79 85 return fShort ? "deletingsnapshot" : "deleting snapshot"; 80 case MachineState_DeletingSnapshotOnline:81 return fShort ? "deletingsnapshotlive" : "deleting snapshot live";82 case MachineState_DeletingSnapshotPaused:83 return fShort ? "deletingsnapshotlivepaused" : "deleting snapshot live paused";84 86 case MachineState_SettingUp: 85 87 return fShort ? "settingup" : "setting up"; 88 case MachineState_Snapshotting: 89 return "snapshotting"; 86 90 default: 87 91 break;
Note:
See TracChangeset
for help on using the changeset viewer.