Changeset 47099 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 11, 2013 3:16:32 PM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r45730 r47099 27 27 #include "VBoxGlobal.h" 28 28 #include "UIMessageCenter.h" 29 #include "UIPopupCenter.h" 29 30 #include "UIActionPool.h" 30 31 #include "UIKeyboardHandlerNormal.h" … … 914 915 /* Show a possible warning on key release which seems to be more expected by the end user: */ 915 916 if (uisession()->isPaused()) 916 msgCenter().remindAboutPausedVMInput();917 popupCenter().remindAboutPausedVMInput(machineLogic()->activeMachineWindow()); 917 918 } 918 919 break; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r46020 r47099 25 25 #include "VBoxGlobal.h" 26 26 #include "UIMessageCenter.h" 27 #include "UIPopupCenter.h" 27 28 #include "UIKeyboardHandler.h" 28 29 #include "UIMouseHandler.h" … … 360 361 KMachineState state = uisession()->machineState(); 361 362 if (state != KMachineState_Restoring) 362 msgCenter().remindAboutMouseIntegration(uisession()->isMouseSupportsAbsolute()); 363 popupCenter().remindAboutMouseIntegration(uisession()->machineLogic()->activeMachineWindow(), 364 uisession()->isMouseSupportsAbsolute()); 363 365 } 364 366 … … 844 846 if (uisession()->isPaused()) 845 847 { 846 msgCenter().remindAboutPausedVMInput();848 popupCenter().remindAboutPausedVMInput(machineLogic()->activeMachineWindow()); 847 849 } 848 850 else if (uisession()->isRunning())
Note:
See TracChangeset
for help on using the changeset viewer.