- Timestamp:
- Nov 1, 2021 1:08:24 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFormEditorWidget.h
r92151 r92165 51 51 /** Returns the notification-center reference. */ 52 52 UINotificationCenter *notificationCenter() const { return m_pNotificationCenter; } 53 /** Defines the @a pNotificationCenter reference. */ 54 void setNotificationCenter(UINotificationCenter *pNotificationCenter) { m_pNotificationCenter = pNotificationCenter; } 53 55 54 56 /** Returns horizontal header reference. */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
r92089 r92165 528 528 void UIWizardExportAppPageExpert::initializePage() 529 529 { 530 /* Make sure form-editor knows notification-center: */ 531 m_pFormEditor->setNotificationCenter(wizard()->notificationCenter()); 530 532 /* Choose 1st tool to be chosen initially: */ 531 533 m_pToolBox->setCurrentPage(0); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageSettings.cpp
r92089 r92165 175 175 void UIWizardExportAppPageSettings::initializePage() 176 176 { 177 /* Make sure form-editor knows notification-center: */ 178 m_pFormEditor->setNotificationCenter(wizard()->notificationCenter()); 177 179 /* Translate page: */ 178 180 retranslateUi(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.cpp
r92096 r92165 409 409 void UIWizardImportAppPageExpert::initializePage() 410 410 { 411 /* Make sure form-editor knows notification-center: */ 412 m_pFormEditor->setNotificationCenter(wizard()->notificationCenter()); 411 413 /* Choose 1st tool to be chosen initially: */ 412 414 m_pToolBox->setCurrentPage(0); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSettings.cpp
r92096 r92165 485 485 void UIWizardImportAppPageSettings::initializePage() 486 486 { 487 /* Make sure form-editor knows notification-center: */ 488 m_pFormEditor->setNotificationCenter(wizard()->notificationCenter()); 487 489 /* Translate page: */ 488 490 retranslateUi(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp
r92147 r92165 241 241 void UIWizardNewCloudVMPageExpert::initializePage() 242 242 { 243 /* Make sure form-editor knows notification-center: */ 244 m_pFormEditor->setNotificationCenter(wizard()->notificationCenter()); 243 245 /* Populate providers: */ 244 246 populateProviders(m_pProviderComboBox); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageProperties.cpp
r92147 r92165 100 100 void UIWizardNewCloudVMPageProperties::initializePage() 101 101 { 102 /* Make sure form-editor knows notification-center: */ 103 m_pFormEditor->setNotificationCenter(wizard()->notificationCenter()); 102 104 /* Generate VSD form, asynchronously: */ 103 105 QMetaObject::invokeMethod(this, "sltInitShortWizardForm", Qt::QueuedConnection);
Note:
See TracChangeset
for help on using the changeset viewer.