Changeset 89995 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 2, 2021 10:21:06 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145472
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.cpp
r89987 r89995 45 45 void UIFrame::paintEvent(QPaintEvent *pEvent) 46 46 { 47 /* Sanity check: */ 48 AssertPtrReturnVoid(pEvent); 49 47 50 /* Prepare painter: */ 48 51 QPainter painter(this); … … 114 117 int UINativeWizard::addPage(UINativeWizardPage *pPage) 115 118 { 119 /* Sanity check: */ 120 AssertPtrReturn(pPage, -1); 121 AssertPtrReturn(pPage->layout(), -1); 122 116 123 /* Adjust page layout: */ 117 124 const int iL = m_enmMode == WizardMode_Expert
Note:
See TracChangeset
for help on using the changeset viewer.