Changeset 57805 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 17, 2015 3:01:21 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102750
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r57611 r57805 456 456 457 457 return *mSelectorWnd; 458 }459 460 UIMachine* VBoxGlobal::virtualMachine() const461 {462 return gpMachine;463 458 } 464 459 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r57611 r57805 177 177 UISelectorWindow &selectorWnd(); 178 178 179 /** Returns current virtual machine. */180 UIMachine* virtualMachine() const;181 179 /** Returns currently active virtual machine window. */ 182 180 QWidget* activeMachineWindow() const; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
r57179 r57805 45 45 bool UIMachine::startMachine(const QString &strID) 46 46 { 47 /* Some restrictions: */ 48 AssertMsgReturn(vboxGlobal().isValid(), ("VBoxGlobal is invalid.."), false); 49 AssertMsgReturn(!vboxGlobal().virtualMachine(), ("Machine already started.."), false); 47 /* Make sure machine is not created: */ 48 AssertReturn(!m_spInstance, false); 50 49 51 50 /* Restore current snapshot if requested: */ … … 98 97 bool UIMachine::create() 99 98 { 100 /* Make sure machine is n ull pointer: */101 AssertReturn( m_spInstance == 0, false);99 /* Make sure machine is not created: */ 100 AssertReturn(!m_spInstance, false); 102 101 103 102 /* Create machine UI: */ … … 118 117 void UIMachine::destroy() 119 118 { 120 /* Make sure machine is valid pointer: */121 Assert ReturnVoid(m_spInstance != 0);119 /* Make sure machine is created: */ 120 AssertPtrReturnVoid(m_spInstance); 122 121 123 122 /* Cleanup machine UI: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r57591 r57805 1983 1983 static void signalHandlerSIGUSR1(int sig, siginfo_t * /* pInfo */, void * /*pSecret */) 1984 1984 { 1985 /* only SIGUSR1 is interesting*/1985 /* Only SIGUSR1 is interesting: */ 1986 1986 if (sig == SIGUSR1) 1987 if ( UIMachine *pMachine = vboxGlobal().virtualMachine())1988 pMachine->uisession()->machineLogic()->keyboardHandler()->releaseAllPressedKeys();1987 if (gpMachine) 1988 gpMachine->uisession()->machineLogic()->keyboardHandler()->releaseAllPressedKeys(); 1989 1989 } 1990 1990 #endif /* VBOX_GUI_WITH_KEYS_RESET_HANDLER */
Note:
See TracChangeset
for help on using the changeset viewer.