Changeset 78992 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jun 5, 2019 12:03:27 PM (6 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp
r78991 r78992 157 157 setTitle(UIWizardExportApp::tr("Virtual system settings")); 158 158 159 /* Translate widgets: */ 160 m_pLabel->setText(UIWizardExportApp::tr("This is the descriptive information which will be added " 161 "to the virtual appliance. You can change it by double " 162 "clicking on individual lines.")); 159 /* Update page appearance: */ 160 updatePageAppearance(); 163 161 } 164 162 … … 190 188 return fResult; 191 189 } 190 191 void UIWizardExportAppPageBasic3::updatePageAppearance() 192 { 193 /* Check whether there was cloud target selected: */ 194 const bool fIsFormatCloudOne = field("isFormatCloudOne").toBool(); 195 if (fIsFormatCloudOne) 196 m_pLabel->setText(UIWizardExportApp::tr("This is the descriptive information which will be used to determine settings " 197 "for a cloud storage your VM being exported to. You can change it by double " 198 "clicking on individual lines.")); 199 else 200 m_pLabel->setText(UIWizardExportApp::tr("This is the descriptive information which will be added to the virtual " 201 "appliance. You can change it by double clicking on individual lines.")); 202 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.h
r78991 r78992 86 86 virtual bool validatePage() /* override */; 87 87 88 /** Updates page appearance. */ 89 void updatePageAppearance(); 90 88 91 private: 89 92
Note:
See TracChangeset
for help on using the changeset viewer.