Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 74757)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 74758)
@@ -363,10 +363,4 @@
 }
 
-QString UIWizardExportAppPage2::format() const
-{
-    const int iIndex = m_pFormatComboBox->currentIndex();
-    return m_pFormatComboBox->itemData(iIndex).toString();
-}
-
 void UIWizardExportAppPage2::setFormat(const QString &strFormat)
 {
@@ -375,19 +369,18 @@
     m_pFormatComboBox->setCurrentIndex(iIndex);
 }
+QString UIWizardExportAppPage2::format() const
+{
+    const int iIndex = m_pFormatComboBox->currentIndex();
+    return m_pFormatComboBox->itemData(iIndex).toString();
+}
+
+void UIWizardExportAppPage2::setPath(const QString &strPath)
+{
+    m_pFileSelector->setPath(strPath);
+}
 
 QString UIWizardExportAppPage2::path() const
 {
     return m_pFileSelector->path();
-}
-
-void UIWizardExportAppPage2::setPath(const QString &strPath)
-{
-    m_pFileSelector->setPath(strPath);
-}
-
-MACAddressPolicy UIWizardExportAppPage2::macAddressPolicy() const
-{
-    const int iIndex = m_pMACComboBox->currentIndex();
-    return (MACAddressPolicy)m_pMACComboBox->itemData(iIndex).toInt();
 }
 
@@ -399,4 +392,15 @@
 }
 
+MACAddressPolicy UIWizardExportAppPage2::macAddressPolicy() const
+{
+    const int iIndex = m_pMACComboBox->currentIndex();
+    return (MACAddressPolicy)m_pMACComboBox->itemData(iIndex).toInt();
+}
+
+void UIWizardExportAppPage2::setManifestSelected(bool fChecked)
+{
+    m_pManifestCheckbox->setChecked(fChecked);
+}
+
 bool UIWizardExportAppPage2::isManifestSelected() const
 {
@@ -404,7 +408,7 @@
 }
 
-void UIWizardExportAppPage2::setManifestSelected(bool fChecked)
-{
-    m_pManifestCheckbox->setChecked(fChecked);
+void UIWizardExportAppPage2::setIncludeISOsSelected(bool fChecked)
+{
+    m_pIncludeISOsCheckbox->setChecked(fChecked);
 }
 
@@ -412,9 +416,4 @@
 {
     return m_pIncludeISOsCheckbox->isChecked();
-}
-
-void UIWizardExportAppPage2::setIncludeISOsSelected(bool fChecked)
-{
-    m_pIncludeISOsCheckbox->setChecked(fChecked);
 }
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 74757)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 74758)
@@ -103,28 +103,28 @@
     void adjustAccountPropertyTable();
 
+    /** Defines @a strFormat. */
+    void setFormat(const QString &strFormat);
     /** Returns format. */
     QString format() const;
-    /** Defines @a strFormat. */
-    void setFormat(const QString &strFormat);
-
+
+    /** Defines @a strPath. */
+    void setPath(const QString &strPath);
     /** Returns path. */
     QString path() const;
-    /** Defines @a strPath. */
-    void setPath(const QString &strPath);
-
+
+    /** Defines @a enmMACAddressPolicy. */
+    void setMACAddressPolicy(MACAddressPolicy enmMACAddressPolicy);
     /** Returns MAC address policy. */
     MACAddressPolicy macAddressPolicy() const;
-    /** Defines @a enmMACAddressPolicy. */
-    void setMACAddressPolicy(MACAddressPolicy enmMACAddressPolicy);
-
+
+    /** Defines whether manifest @a fSelected. */
+    void setManifestSelected(bool fChecked);
     /** Returns whether manifest selected. */
     bool isManifestSelected() const;
-    /** Defines whether manifest @a fSelected. */
-    void setManifestSelected(bool fChecked);
-
+
+    /** Defines whether include ISOs @a fSelected. */
+    void setIncludeISOsSelected(bool fChecked);
     /** Returns whether include ISOs selected. */
     bool isIncludeISOsSelected() const;
-    /** Defines whether include ISOs @a fSelected. */
-    void setIncludeISOsSelected(bool fChecked);
 
     /** Defines provider by @a strId. */
