Changeset 52057 in vbox
- Timestamp:
- Jul 16, 2014 5:23:26 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp
r52056 r52057 290 290 void sltParentGeometryChanged(const QRect &rect); 291 291 292 /** Handles 3D overlay visibility change. */293 void sltHandle3DOverlayVisibilityChange();294 295 292 /** Handles configuration change. */ 296 293 void sltHandleConfigurationChange(); … … 301 298 /** Handles drag object destroy. */ 302 299 void sltHandleDragObjectDestroy(); 300 301 #ifdef Q_WS_MAC 302 /** Performs window activation. */ 303 void sltActivateWindow() { activateWindow(); } 304 #endif /* Q_WS_MAC */ 303 305 304 306 private: … … 420 422 /* Adjust geometry: */ 421 423 adjustGeometry(); 422 }423 424 void UIStatusBarEditorWindow::sltHandle3DOverlayVisibilityChange()425 {426 /* Reactivate window when 3D overlay covered us: */427 activateWindow();428 424 } 429 425 … … 984 980 connect(this, SIGNAL(sigGeometryChange(const QRect&)), 985 981 pStatusBarEditor, SLOT(sltParentGeometryChanged(const QRect&))); 986 connect(machineLogic(), SIGNAL(sigNotifyAbout3DOverlayVisibilityChange(bool)),987 pStatusBarEditor, SLOT(sltHandle3DOverlayVisibilityChange()));988 982 connect(pStatusBarEditor, SIGNAL(destroyed(QObject*)), 989 983 this, SLOT(sltStatusBarEditorWindowClosed())); 984 #ifdef Q_WS_MAC 985 connect(machineLogic(), SIGNAL(sigNotifyAbout3DOverlayVisibilityChange(bool)), 986 pStatusBarEditor, SLOT(sltActivateWindow())); 987 #endif /* Q_WS_MAC */ 990 988 /* Show window: */ 991 989 pStatusBarEditor->show();
Note:
See TracChangeset
for help on using the changeset viewer.