Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 75224)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 75225)
@@ -509,4 +509,9 @@
 }
 
+void UIWizardExportAppPageExpert::cleanupPage()
+{
+    /* Do nothing, we don't want field values to be reseted. */
+}
+
 bool UIWizardExportAppPageExpert::isComplete() const
 {
@@ -523,5 +528,5 @@
                           || field("format").toString() == "ovf-1.0"
                           || field("format").toString() == "ovf-2.0";
-        const bool fCSP =    isFormatCloudOne();
+        const bool fCSP =    field("isFormatCloudOne").toBool();
 
         const QString &strFile = field("path").toString().toLower();
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.h	(revision 75224)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.h	(revision 75225)
@@ -70,4 +70,6 @@
     /** Performs page initialization. */
     virtual void initializePage() /* override */;
+    /** Performs page uninitialization. */
+    virtual void cleanupPage() /* override */;
 
     /** Returns whether page is complete. */
