Changeset 63269 in vbox
- Timestamp:
- Aug 10, 2016 1:52:32 PM (8 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.cpp
r63227 r63269 368 368 369 369 /* Notify listeners: */ 370 emit sigHostScreenWorkAreaRe sized(iHostScreenIndex);370 emit sigHostScreenWorkAreaRecalculated(iHostScreenIndex); 371 371 } 372 372 #endif /* VBOX_WS_X11 */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.h
r63227 r63269 53 53 /** Notifies about work-area resize for the host-screen with @a iHostScreenIndex. */ 54 54 void sigHostScreenWorkAreaResized(int iHostScreenIndex); 55 56 #ifdef VBOX_WS_X11 57 /** Notifies about work-area recalculated for the host-screen with @a iHostScreenIndex. */ 58 void sigHostScreenWorkAreaRecalculated(int iHostScreenIndex); 59 #endif /* VBOX_WS_X11 */ 55 60 56 61 public: -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r63175 r63269 1131 1131 connect(gpDesktop, SIGNAL(sigHostScreenWorkAreaResized(int)), 1132 1132 this, SLOT(sltHandleHostScreenAvailableAreaChange())); 1133 # ifdef VBOX_WS_X11 1134 connect(gpDesktop, SIGNAL(sigHostScreenWorkAreaRecalculated(int)), 1135 this, SLOT(sltHandleHostScreenAvailableAreaChange())); 1136 # endif /* VBOX_WS_X11 */ 1133 1137 #endif /* !VBOX_WS_MAC */ 1134 1138 }
Note:
See TracChangeset
for help on using the changeset viewer.