Changeset 89967 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jun 30, 2021 8:58:25 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145426
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.cpp
r89960 r89967 92 92 , m_enmMode(enmMode == WizardMode_Auto ? gEDataManager->modeForWizardType(m_enmType) : enmMode) 93 93 , m_strHelpHashtag(strHelpHashtag) 94 , m_iLastIndex(-1) 94 95 , m_pLabelPixmap(0) 95 96 #ifdef VBOX_WS_MAC … … 228 229 m_pLabelPageTitle->setText(pPage->title()); 229 230 #endif 230 pPage->initializePage(); 231 if (iIndex > m_iLastIndex) 232 pPage->initializePage(); 233 234 /* Update last index: */ 235 m_iLastIndex = iIndex; 231 236 } 232 237 … … 461 466 } 462 467 m_pWidgetStack->blockSignals(false); 468 469 /* Update last index: */ 470 m_iLastIndex = -1; 463 471 } 464 472 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.h
r89960 r89967 159 159 /** Holds the pixmap name. */ 160 160 QString m_strPixmapName; 161 /** Holds the last entered page index. */ 162 int m_iLastIndex; 161 163 162 164 /** Holds the pixmap label instance. */
Note:
See TracChangeset
for help on using the changeset viewer.