Changeset 43449 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Sep 27, 2012 11:39:05 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r43127 r43449 3842 3842 bool VBoxGlobal::isSheetWindowAllowed(QWidget *pParent) const 3843 3843 { 3844 /* Disallow for null parent: */ 3845 if (!pParent) 3846 return false; 3847 3844 3848 /* Make sure Mac Sheet is not used for the same parent now. */ 3845 3849 if (sheetWindowUsed(pParent)) … … 3857 3861 void VBoxGlobal::setSheetWindowUsed(QWidget *pParent, bool fUsed) 3858 3862 { 3863 /* Ignore null parent: */ 3864 if (!pParent) 3865 return; 3866 3859 3867 if (fUsed) 3860 3868 {
Note:
See TracChangeset
for help on using the changeset viewer.