Changeset 75225 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 2, 2018 2:33:18 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/UIWizardExportAppPageExpert.cpp
r75070 r75225 509 509 } 510 510 511 void UIWizardExportAppPageExpert::cleanupPage() 512 { 513 /* Do nothing, we don't want field values to be reseted. */ 514 } 515 511 516 bool UIWizardExportAppPageExpert::isComplete() const 512 517 { … … 523 528 || field("format").toString() == "ovf-1.0" 524 529 || field("format").toString() == "ovf-2.0"; 525 const bool fCSP = isFormatCloudOne();530 const bool fCSP = field("isFormatCloudOne").toBool(); 526 531 527 532 const QString &strFile = field("path").toString().toLower(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.h
r75055 r75225 70 70 /** Performs page initialization. */ 71 71 virtual void initializePage() /* override */; 72 /** Performs page uninitialization. */ 73 virtual void cleanupPage() /* override */; 72 74 73 75 /** Returns whether page is complete. */
Note:
See TracChangeset
for help on using the changeset viewer.