Changeset 105582 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Aug 5, 2024 1:53:49 PM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164259
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.cpp
r105363 r105582 581 581 } 582 582 583 void UINativeWizard::deinit()584 {585 /* Remove all the pages: */586 m_pWidgetStack->blockSignals(true);587 while (m_pWidgetStack->count() > 0)588 {589 QWidget *pLastWidget = m_pWidgetStack->widget(m_pWidgetStack->count() - 1);590 m_pWidgetStack->removeWidget(pLastWidget);591 delete pLastWidget;592 }593 m_pWidgetStack->blockSignals(false);594 595 /* Update last index: */596 m_iLastIndex = -1;597 /* Update invisible pages: */598 m_invisiblePages.clear();599 600 /* Clean wizard finally: */601 cleanWizard();602 }603 604 583 void UINativeWizard::retranslatePages() 605 584 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.h
r105363 r105582 181 181 /** Inits all. */ 182 182 void init(); 183 /** Deinits all. */184 void deinit();185 183 186 184 /** Performs pages translation. */
Note:
See TracChangeset
for help on using the changeset viewer.