Changeset 91754 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Oct 15, 2021 9:43:13 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.cpp
r91713 r91754 36 36 #include "UINativeWizard.h" 37 37 #include "UINativeWizardPage.h" 38 #include "UINotificationCenter.h" 38 39 39 40 … … 103 104 , m_pProgressStack(0) 104 105 , m_pProgressBar(0) 106 , m_pNotificationCenter(0) 105 107 { 106 108 prepare(); … … 543 545 } 544 546 } 547 548 /* Prepare local notification-center: */ 549 m_pNotificationCenter = new UINotificationCenter(this); 545 550 } 546 551 547 552 void UINativeWizard::cleanup() 548 553 { 554 /* Cleanup local notification-center: */ 555 delete m_pNotificationCenter; 556 m_pNotificationCenter = 0; 557 549 558 /* Remove all the pages: */ 550 559 m_pWidgetStack->blockSignals(true); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.h
r91026 r91754 38 38 class QVBoxLayout; 39 39 class UINativeWizardPage; 40 class UINotificationCenter; 40 41 41 42 /** Native wizard buttons. */ … … 198 199 /** Holds button instance map. */ 199 200 QMap<WizardButtonType, QPushButton*> m_buttons; 201 202 /** Holds the local notification-center instance. */ 203 UINotificationCenter *m_pNotificationCenter; 200 204 }; 201 205
Note:
See TracChangeset
for help on using the changeset viewer.