Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 86586)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 86587)
@@ -68,4 +68,8 @@
     , m_pProfileComboBox(0)
     , m_pProfileToolButton(0)
+    , m_pMachineLabel(0)
+    , m_pRadioDoNotAsk(0)
+    , m_pRadioAskThenExport(0)
+    , m_pRadioExportThenAsk(0)
 {
 }
@@ -815,4 +819,18 @@
                         m_pSettingsLayout2->addWidget(m_pMachineLabel, 1, 0);
                     }
+                    /* Create Do Not Ask button: */
+                    m_pRadioDoNotAsk = new QRadioButton;
+                    if (m_pRadioDoNotAsk)
+                    {
+                        /* Add into layout: */
+                        m_pSettingsLayout2->addWidget(m_pRadioDoNotAsk, 1, 1);
+                    }
+                    /* Create Ask Then Export button: */
+                    m_pRadioAskThenExport = new QRadioButton;
+                    if (m_pRadioAskThenExport)
+                    {
+                        /* Add into layout: */
+                        m_pSettingsLayout2->addWidget(m_pRadioAskThenExport, 2, 1);
+                    }
                     /* Create Export Then Ask button: */
                     m_pRadioExportThenAsk = new QRadioButton;
@@ -820,19 +838,5 @@
                     {
                         /* Add into layout: */
-                        m_pSettingsLayout2->addWidget(m_pRadioExportThenAsk, 1, 1);
-                    }
-                    /* Create Ask Then Export button: */
-                    m_pRadioAskThenExport = new QRadioButton;
-                    if (m_pRadioAskThenExport)
-                    {
-                        /* Add into layout: */
-                        m_pSettingsLayout2->addWidget(m_pRadioAskThenExport, 2, 1);
-                    }
-                    /* Create Do Not Ask button: */
-                    m_pRadioDoNotAsk = new QRadioButton;
-                    if (m_pRadioDoNotAsk)
-                    {
-                        /* Add into layout: */
-                        m_pSettingsLayout2->addWidget(m_pRadioDoNotAsk, 3, 1);
+                        m_pSettingsLayout2->addWidget(m_pRadioExportThenAsk, 3, 1);
                     }
                 }
@@ -969,7 +973,7 @@
     /* Translate option label: */
     m_pMachineLabel->setText(UIWizardExportApp::tr("Machine Creation:"));
+    m_pRadioDoNotAsk->setText(UIWizardExportApp::tr("Do not ask me about it, leave custom &image for future usage"));
+    m_pRadioAskThenExport->setText(UIWizardExportApp::tr("Ask me about it &before exporting disk as custom image"));
     m_pRadioExportThenAsk->setText(UIWizardExportApp::tr("Ask me about it &after exporting disk as custom image"));
-    m_pRadioAskThenExport->setText(UIWizardExportApp::tr("Ask me about it &before exporting disk as custom image"));
-    m_pRadioDoNotAsk->setText(UIWizardExportApp::tr("Do &not ask me about it, leave custom image for future usage"));
 
     /* Adjust label widths: */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 86586)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 86587)
@@ -240,10 +240,10 @@
     /** Holds the machine label instance. */
     QLabel       *m_pMachineLabel;
+    /** Holds the don't ask radio button instance. */
+    QRadioButton *m_pRadioDoNotAsk;
+    /** Holds the ask then export radio button instance. */
+    QRadioButton *m_pRadioAskThenExport;
     /** Holds the export then ask radio button instance. */
     QRadioButton *m_pRadioExportThenAsk;
-    /** Holds the ask then export radio button instance. */
-    QRadioButton *m_pRadioAskThenExport;
-    /** Holds the don't ask radio button instance. */
-    QRadioButton *m_pRadioDoNotAsk;
 };
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 86586)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 86587)
@@ -361,4 +361,18 @@
                                 m_pSettingsLayout2->addWidget(m_pMachineLabel, 1, 0);
                             }
+                            /* Create Do Not Ask button: */
+                            m_pRadioDoNotAsk = new QRadioButton;
+                            if (m_pRadioDoNotAsk)
+                            {
+                                /* Add into layout: */
+                                m_pSettingsLayout2->addWidget(m_pRadioDoNotAsk, 1, 1);
+                            }
+                            /* Create Ask Then Export button: */
+                            m_pRadioAskThenExport = new QRadioButton;
+                            if (m_pRadioAskThenExport)
+                            {
+                                /* Add into layout: */
+                                m_pSettingsLayout2->addWidget(m_pRadioAskThenExport, 2, 1);
+                            }
                             /* Create Export Then Ask button: */
                             m_pRadioExportThenAsk = new QRadioButton;
@@ -366,19 +380,5 @@
                             {
                                 /* Add into layout: */
-                                m_pSettingsLayout2->addWidget(m_pRadioExportThenAsk, 1, 1);
-                            }
-                            /* Create Ask Then Export button: */
-                            m_pRadioAskThenExport = new QRadioButton;
-                            if (m_pRadioAskThenExport)
-                            {
-                                /* Add into layout: */
-                                m_pSettingsLayout2->addWidget(m_pRadioAskThenExport, 2, 1);
-                            }
-                            /* Create Do Not Ask button: */
-                            m_pRadioDoNotAsk = new QRadioButton;
-                            if (m_pRadioDoNotAsk)
-                            {
-                                /* Add into layout: */
-                                m_pSettingsLayout2->addWidget(m_pRadioDoNotAsk, 3, 1);
+                                m_pSettingsLayout2->addWidget(m_pRadioExportThenAsk, 3, 1);
                             }
                         }
@@ -517,7 +517,7 @@
     /* Translate option label: */
     m_pMachineLabel->setText(UIWizardExportApp::tr("Machine Creation:"));
+    m_pRadioDoNotAsk->setText(UIWizardExportApp::tr("Do not ask me about it, leave custom &image for future usage"));
+    m_pRadioAskThenExport->setText(UIWizardExportApp::tr("Ask me about it &before exporting disk as custom image"));
     m_pRadioExportThenAsk->setText(UIWizardExportApp::tr("Ask me about it &after exporting disk as custom image"));
-    m_pRadioAskThenExport->setText(UIWizardExportApp::tr("Ask me about it &before exporting disk as custom image"));
-    m_pRadioDoNotAsk->setText(UIWizardExportApp::tr("Do &not ask me about it, leave custom image for future usage"));
 
     /* Adjust label widths: */
