Changeset 79557 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 5, 2019 2:15:59 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131844
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportApp.cpp
r78994 r79557 242 242 /* Now, when we are ready, we can 243 243 * fast traver to page 2 if requested: */ 244 if (m_fFastTraverToExportOCI) 244 if ( mode() == WizardMode_Basic 245 && m_fFastTraverToExportOCI) 245 246 button(QWizard::NextButton)->click(); 246 247 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
r79542 r79557 50 50 UIWizardExportAppPageExpert::UIWizardExportAppPageExpert(const QStringList &selectedVMNames, bool fExportToOCIByDefault) 51 51 : UIWizardExportAppPage2(fExportToOCIByDefault) 52 , m_fPolished(false) 52 53 , m_pSelectorCnt(0) 53 54 , m_pApplianceCnt(0) … … 391 392 /* Populate MAC address policies: */ 392 393 populateMACAddressPolicies(); 393 /* Populate accounts: */394 populateAccounts();395 /* Populate account properties: */396 populateAccountProperties();397 /* Populate form properties: */398 populateFormProperties();399 394 400 395 /* Setup connections: */ … … 534 529 void UIWizardExportAppPageExpert::initializePage() 535 530 { 531 /* If wasn't polished yet: */ 532 if (!m_fPolished) 533 { 534 QMetaObject::invokeMethod(this, "sltHandleFormatComboChange", Qt::QueuedConnection); 535 m_fPolished = true; 536 } 537 536 538 /* Translate page: */ 537 539 retranslateUi(); 538 539 /* Refresh file selector name: */540 // refreshFileSelectorName(); already called from retranslateUi();541 /* Refresh file selector extension: */542 refreshFileSelectorExtension();543 /* Refresh manifest check-box access: */544 refreshManifestCheckBoxAccess();545 /* Refresh include ISOs check-box access: */546 refreshIncludeISOsCheckBoxAccess();547 548 /* Check whether there was cloud target selected: */549 const bool fIsFormatCloudOne = field("isFormatCloudOne").toBool();550 if (fIsFormatCloudOne)551 refreshFormPropertiesTable();552 else553 refreshApplianceSettingsWidget();554 540 } 555 541 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.h
r79542 r79557 104 104 private: 105 105 106 /** Holds whether starting page was polished. */ 107 bool m_fPolished; 108 106 109 /** Holds the VM selector container instance. */ 107 110 QGroupBox *m_pSelectorCnt;
Note:
See TracChangeset
for help on using the changeset viewer.