Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 78073)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 78074)
@@ -68,5 +68,5 @@
     , m_pManifestCheckbox(0)
     , m_pIncludeISOsCheckbox(0)
-    , m_pAccountComboBoxLabel(0)
+    , m_pAccountLabel(0)
     , m_pAccountComboBox(0)
     , m_pAccountToolButton(0)
@@ -930,12 +930,12 @@
                     m_pSettingsLayout2->setColumnStretch(1, 1);
 
-                    /* Create provider label: */
-                    m_pAccountComboBoxLabel = new QLabel;
-                    if (m_pAccountComboBoxLabel)
+                    /* Create account label: */
+                    m_pAccountLabel = new QLabel;
+                    if (m_pAccountLabel)
                     {
-                        m_pAccountComboBoxLabel->setAlignment(Qt::AlignRight | Qt::AlignTrailing | Qt::AlignVCenter);
+                        m_pAccountLabel->setAlignment(Qt::AlignRight | Qt::AlignTrailing | Qt::AlignVCenter);
 
                         /* Add into layout: */
-                        m_pSettingsLayout2->addWidget(m_pAccountComboBoxLabel, 0, 0);
+                        m_pSettingsLayout2->addWidget(m_pAccountLabel, 0, 0);
                     }
                     /* Create sub-layout: */
@@ -946,14 +946,14 @@
                         pSubLayout->setSpacing(1);
 
-                        /* Create provider combo-box: */
+                        /* Create account combo-box: */
                         m_pAccountComboBox = new QComboBox;
                         if (m_pAccountComboBox)
                         {
-                            m_pAccountComboBoxLabel->setBuddy(m_pAccountComboBox);
+                            m_pAccountLabel->setBuddy(m_pAccountComboBox);
 
                             /* Add into layout: */
                             pSubLayout->addWidget(m_pAccountComboBox);
                         }
-                        /* Create provider combo-box: */
+                        /* Create account tool-button: */
                         m_pAccountToolButton = new QIToolButton;
                         if (m_pAccountToolButton)
@@ -1003,7 +1003,7 @@
     /* Populate MAC address policies: */
     populateMACAddressPolicies();
-    /* Populate providers: */
+    /* Populate accounts: */
     populateAccounts();
-    /* Populate profile properties: */
+    /* Populate account properties: */
     populateAccountProperties();
 
@@ -1121,6 +1121,6 @@
     m_pIncludeISOsCheckbox->setText(UIWizardExportApp::tr("&Include ISO image files"));
 
-    /* Translate Account combo-box: */
-    m_pAccountComboBoxLabel->setText(UIWizardExportApp::tr("&Account:"));
+    /* Translate Account label: */
+    m_pAccountLabel->setText(UIWizardExportApp::tr("&Account:"));
 
     /* Adjust label widths: */
@@ -1130,5 +1130,5 @@
     labels << m_pMACComboBoxLabel;
     labels << m_pAdditionalLabel;
-    labels << m_pAccountComboBoxLabel;
+    labels << m_pAccountLabel;
     int iMaxWidth = 0;
     foreach (QWidget *pLabel, labels)
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 78073)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 78074)
@@ -219,6 +219,6 @@
     QCheckBox *m_pIncludeISOsCheckbox;
 
-    /** Holds the account combo-box label instance. */
-    QLabel       *m_pAccountComboBoxLabel;
+    /** Holds the account label instance. */
+    QLabel       *m_pAccountLabel;
     /** Holds the account combo-box instance. */
     QComboBox    *m_pAccountComboBox;
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 78073)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 78074)
@@ -264,11 +264,11 @@
 
                             /* Create account label: */
-                            m_pAccountComboBoxLabel = new QLabel;
-                            if (m_pAccountComboBoxLabel)
-                            {
-                                m_pAccountComboBoxLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
-
-                                /* Add into layout: */
-                                m_pSettingsLayout2->addWidget(m_pAccountComboBoxLabel, 0, 0);
+                            m_pAccountLabel = new QLabel;
+                            if (m_pAccountLabel)
+                            {
+                                m_pAccountLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
+
+                                /* Add into layout: */
+                                m_pSettingsLayout2->addWidget(m_pAccountLabel, 0, 0);
                             }
                             /* Create sub-layout: */
@@ -279,14 +279,14 @@
                                 pSubLayout->setSpacing(1);
 
-                                /* Create provider combo-box: */
+                                /* Create account combo-box: */
                                 m_pAccountComboBox = new QComboBox;
                                 if (m_pAccountComboBox)
                                 {
-                                    m_pAccountComboBoxLabel->setBuddy(m_pAccountComboBox);
+                                    m_pAccountLabel->setBuddy(m_pAccountComboBox);
 
                                     /* Add into layout: */
                                     pSubLayout->addWidget(m_pAccountComboBox);
                                 }
-                                /* Create provider combo-box: */
+                                /* Create account tool-button: */
                                 m_pAccountToolButton = new QIToolButton;
                                 if (m_pAccountToolButton)
@@ -462,6 +462,6 @@
     m_pIncludeISOsCheckbox->setText(UIWizardExportApp::tr("&Include ISO image files"));
 
-    /* Translate Account combo-box: */
-    m_pAccountComboBoxLabel->setText(UIWizardExportApp::tr("&Account:"));
+    /* Translate Account label: */
+    m_pAccountLabel->setText(UIWizardExportApp::tr("&Account:"));
 
     /* Adjust label widths: */
@@ -471,5 +471,5 @@
     labels << m_pMACComboBoxLabel;
     labels << m_pAdditionalLabel;
-    labels << m_pAccountComboBoxLabel;
+    labels << m_pAccountLabel;
     int iMaxWidth = 0;
     foreach (QWidget *pLabel, labels)
