Changeset 12118 in vbox
- Timestamp:
- Sep 5, 2008 8:18:54 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36060
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/QIMessageBox.cpp
r12097 r12118 57 57 * normal window in that case. */ 58 58 VBoxConsoleWnd *cwnd = qobject_cast<VBoxConsoleWnd*> (aParent); 59 if (cwnd != NULL &&60 !cwnd->isTrueFullscreen() &&61 !cwnd->isTrueSeamless())59 if (cwnd == NULL || 60 (!cwnd->isTrueFullscreen() && 61 !cwnd->isTrueSeamless())) 62 62 setWindowFlags (windowFlags() | Qt::Sheet); 63 63 #endif /* Q_WS_MAC */ -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxCloseVMDlg.cpp
r12097 r12118 37 37 * normal window in that case. */ 38 38 VBoxConsoleWnd *cwnd = qobject_cast<VBoxConsoleWnd*> (aParent); 39 if (cwnd != NULL &&40 !cwnd->isTrueFullscreen() &&41 !cwnd->isTrueSeamless())39 if (cwnd == NULL || 40 (!cwnd->isTrueFullscreen() && 41 !cwnd->isTrueSeamless())) 42 42 setWindowFlags (Qt::Sheet); 43 43 #endif /* Q_WS_MAC */
Note:
See TracChangeset
for help on using the changeset viewer.