Changeset 31688 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 16, 2010 11:19:25 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64831
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r31686 r31688 2619 2619 2620 2620 /* @todo deal with running state change. */ 2621 HRESULT rc = checkStateDependency(MutableStateDep); 2622 if (FAILED(rc)) return rc; 2621 2623 2622 2624 setModified(IsModified_MachineData); … … 2647 2649 2648 2650 /* @todo deal with running state change. */ 2651 HRESULT rc = checkStateDependency(MutableStateDep); 2652 if (FAILED(rc)) return rc; 2649 2653 2650 2654 setModified(IsModified_MachineData); … … 2675 2679 2676 2680 /* @todo deal with running state change. */ 2681 HRESULT rc = checkStateDependency(MutableStateDep); 2682 if (FAILED(rc)) return rc; 2677 2683 2678 2684 setModified(IsModified_MachineData); -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r31686 r31688 490 490 <enum 491 491 name="MachineState" 492 uuid="e 998d075-543a-41fc-8aa9-5ca3e92393fd"492 uuid="ec6c6a9e-113d-4ff4-b44f-0b69f21c97fe" 493 493 > 494 494 <desc> … … 733 733 </desc> 734 734 </const> 735 <const name="DeletingSnapshotOnline" value="16"> 735 <const name="FaultTolerantSyncing" value="16"> 736 <desc> 737 The machine is being synced with a fault tolerant VM running elsewhere. 738 </desc> 739 </const> 740 <const name="DeletingSnapshotOnline" value="17"> 736 741 <desc> 737 742 Like @c DeletingSnapshot, but the merging of media is ongoing in … … 739 744 </desc> 740 745 </const> 741 <const name="DeletingSnapshotPaused" value="1 7">746 <const name="DeletingSnapshotPaused" value="18"> 742 747 <desc> 743 748 Like @c DeletingSnapshotOnline, but the machine was paused when the … … 745 750 </desc> 746 751 </const> 747 <const name="RestoringSnapshot" value="1 8">752 <const name="RestoringSnapshot" value="19"> 748 753 <desc> 749 754 A machine snapshot is being restored; this typically does not take long. 750 755 </desc> 751 756 </const> 752 <const name="DeletingSnapshot" value=" 19">757 <const name="DeletingSnapshot" value="20"> 753 758 <desc> 754 759 A machine snapshot is being deleted; this can take a long time since this … … 757 762 </desc> 758 763 </const> 759 <const name="SettingUp" value="2 0">764 <const name="SettingUp" value="21"> 760 765 <desc> 761 766 Lengthy setup operation is in progress. … … 768 773 </desc> 769 774 </const> 770 <const name="LastOnline" value="1 7" wsmap="suppress"> <!-- DeletingSnapshotPaused -->775 <const name="LastOnline" value="18" wsmap="suppress"> <!-- DeletingSnapshotPaused --> 771 776 <desc> 772 777 Pseudo-state: last online state (for use in relational expressions). … … 779 784 </desc> 780 785 </const> 781 <const name="LastTransient" value="2 0" wsmap="suppress"> <!-- SettingUp -->786 <const name="LastTransient" value="21" wsmap="suppress"> <!-- SettingUp --> 782 787 <desc> 783 788 Pseudo-state: last transient state (for use in relational expressions).
Note:
See TracChangeset
for help on using the changeset viewer.