Changeset 99141 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 23, 2023 12:36:33 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156506
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
r99140 r99141 1476 1476 prepareKeyboard(); 1477 1477 prepareClose(); 1478 prepareMachineLogic(); 1478 prepareVisualState(); 1479 enterInitialVisualState(); 1479 1480 1480 1481 /* Try to initialize VM session: */ … … 1758 1759 } 1759 1760 1760 void UIMachine::prepare MachineLogic()1761 void UIMachine::prepareVisualState() 1761 1762 { 1762 1763 /* Prepare async visual state type change handler: */ … … 1787 1788 } 1788 1789 } 1789 1790 /* Enter initial visual state: */ 1791 enterInitialVisualState(); 1790 } 1791 1792 void UIMachine::enterInitialVisualState() 1793 { 1794 sltChangeVisualState(m_enmInitialVisualState); 1792 1795 } 1793 1796 … … 1850 1853 cleanupSession(); 1851 1854 cleanupNotificationCenter(); 1852 }1853 1854 void UIMachine::enterInitialVisualState()1855 {1856 sltChangeVisualState(m_enmInitialVisualState);1857 1855 } 1858 1856 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.h
r99140 r99141 858 858 /** Prepare routine: Close stuff. */ 859 859 void prepareClose(); 860 /** Prepare routine: Machine-logic stuff. */ 861 void prepareMachineLogic(); 860 /** Prepare routine: Visual-state stuff. */ 861 void prepareVisualState(); 862 863 /** Moves VM to initial state. */ 864 void enterInitialVisualState(); 862 865 863 866 /** Cleanup routine: Machine-logic stuff. */ … … 875 878 /** Cleanup routine. */ 876 879 void cleanup(); 877 878 /** Moves VM to initial state. */879 void enterInitialVisualState();880 880 881 881 /** @name Actions stuff.
Note:
See TracChangeset
for help on using the changeset viewer.