Changeset 79247 in vbox for trunk/src/VBox
- Timestamp:
- Jun 19, 2019 3:46:49 PM (6 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.cpp
r79244 r79247 45 45 UIWizardNewCloudVMPage1::UIWizardNewCloudVMPage1(bool fImportFromOCIByDefault) 46 46 : m_fImportFromOCIByDefault(fImportFromOCIByDefault) 47 , m_fPolished(false) 47 48 , m_pSourceLayout(0) 48 49 , m_pSourceLabel(0) … … 667 668 /* Populate sources: */ 668 669 populateSources(); 669 /* Populate accounts: */670 populateAccounts();671 /* Populate account properties: */672 populateAccountProperties();673 /* Populate account instances: */674 populateAccountInstances();675 670 676 671 /* Setup connections: */ … … 761 756 void UIWizardNewCloudVMPageBasic1::initializePage() 762 757 { 758 /* If wasn't polished yet: */ 759 if (!m_fPolished) 760 { 761 QMetaObject::invokeMethod(this, "sltHandleSourceChange", Qt::QueuedConnection); 762 m_fPolished = true; 763 } 764 763 765 /* Translate page: */ 764 766 retranslateUi(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.h
r79244 r79247 104 104 /** Holds whether default source should be Import from OCI. */ 105 105 bool m_fImportFromOCIByDefault; 106 /** Holds whether starting page was polished. */ 107 bool m_fPolished; 106 108 107 109 /** Holds the Cloud Provider Manager reference. */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp
r79244 r79247 167 167 /* Populate sources: */ 168 168 populateSources(); 169 /* Populate accounts: */170 populateAccounts();171 /* Populate account properties: */172 populateAccountProperties();173 /* Populate account instances: */174 populateAccountInstances();175 /* Populate form properties: */176 populateFormProperties();177 refreshFormPropertiesTable();178 169 179 170 /* Setup connections: */ … … 241 232 void UIWizardNewCloudVMPageExpert::initializePage() 242 233 { 234 /* If wasn't polished yet: */ 235 if (!m_fPolished) 236 { 237 QMetaObject::invokeMethod(this, "sltHandleSourceChange", Qt::QueuedConnection); 238 m_fPolished = true; 239 } 240 243 241 /* Translate page: */ 244 242 retranslateUi();
Note:
See TracChangeset
for help on using the changeset viewer.