Index: /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp	(revision 67964)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp	(revision 67965)
@@ -1217,4 +1217,20 @@
              .arg(gpConverter->toString(oldMediumType)).arg(gpConverter->toString(newMediumType)),
           formatErrorInfo(medium));
+}
+
+void UIMessageCenter::cannotMoveMediumStorage(const CMedium &comMedium, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent /* = 0 */) const
+{
+    error(pParent, MessageType_Error,
+          tr("Failed to move the storage unit of the disk image <b>%1</b> to <b>%2</b>.")
+             .arg(strLocationOld, strLocationNew),
+          formatErrorInfo(comMedium));
+}
+
+void UIMessageCenter::cannotMoveMediumStorage(const CProgress &comProgress, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent /* = 0 */) const
+{
+    error(pParent, MessageType_Error,
+          tr("Failed to move the storage unit of the disk image <b>%1</b> to <b>%2</b>.")
+             .arg(strLocationOld, strLocationNew),
+          formatErrorInfo(comProgress));
 }
 
@@ -1325,20 +1341,4 @@
              .arg(strLocation),
           formatErrorInfo(progress));
-}
-
-void UIMessageCenter::cannotMoveHardDiskStorage(const CMedium &comMedium, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent /* = 0 */) const
-{
-    error(pParent, MessageType_Error,
-          tr("Failed to move the storage unit of the hard disk <b>%1</b> to <b>%2</b>.")
-             .arg(strLocationOld, strLocationNew),
-          formatErrorInfo(comMedium));
-}
-
-void UIMessageCenter::cannotMoveHardDiskStorage(const CProgress &comProgress, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent /* = 0 */) const
-{
-    error(pParent, MessageType_Error,
-          tr("Failed to move the storage unit of the hard disk <b>%1</b> to <b>%2</b>.")
-             .arg(strLocationOld, strLocationNew),
-          formatErrorInfo(comProgress));
 }
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.h	(revision 67964)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.h	(revision 67965)
@@ -245,4 +245,6 @@
     /* API: Virtual Medium Manager warnings: */
     void cannotChangeMediumType(const CMedium &medium, KMediumType oldMediumType, KMediumType newMediumType, QWidget *pParent = 0) const;
+    void cannotMoveMediumStorage(const CMedium &comMedium, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent = 0) const;
+    void cannotMoveMediumStorage(const CProgress &comProgress, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent = 0) const;
     bool confirmMediumRelease(const UIMedium &medium, QWidget *pParent = 0) const;
     bool confirmMediumRemoval(const UIMedium &medium, QWidget *pParent = 0) const;
@@ -250,6 +252,4 @@
     void cannotDeleteHardDiskStorage(const CMedium &medium, const QString &strLocation, QWidget *pParent = 0) const;
     void cannotDeleteHardDiskStorage(const CProgress &progress, const QString &strLocation, QWidget *pParent = 0) const;
-    void cannotMoveHardDiskStorage(const CMedium &comMedium, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent = 0) const;
-    void cannotMoveHardDiskStorage(const CProgress &comProgress, const QString &strLocationOld, const QString &strLocationNew, QWidget *pParent = 0) const;
     void cannotResizeHardDiskStorage(const CMedium &comMedium, const QString &strLocation, const QString &strSizeOld, const QString &strSizeNew, QWidget *pParent = 0) const;
     void cannotResizeHardDiskStorage(const CProgress &comProgress, const QString &strLocation, const QString &strSizeOld, const QString &strSizeNew, QWidget *pParent = 0) const;
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumDetailsWidget.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumDetailsWidget.cpp	(revision 67964)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumDetailsWidget.cpp	(revision 67965)
@@ -136,5 +136,5 @@
 }
 
-void UIMediumDetailsWidget::sltSizeEditorChanged(qulonglong uSize)
+void UIMediumDetailsWidget::sltSizeValueChanged(qulonglong uSize)
 {
     m_newData.m_options.m_uLogicalSize = uSize;
@@ -349,5 +349,5 @@
                     m_pEditorSize->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed);
                     connect(m_pEditorSize, &UIMediumSizeEditor::sigSizeChanged,
-                            this, &UIMediumDetailsWidget::sltSizeEditorChanged);
+                            this, &UIMediumDetailsWidget::sltSizeValueChanged);
 
                     /* Add into layout: */
@@ -361,9 +361,10 @@
                     /* Configure label: */
                     m_pErrorPaneSize->setAlignment(Qt::AlignCenter);
+                    m_pErrorPaneSize->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
                     m_pErrorPaneSize->setPixmap(UIIconPool::iconSet(":/status_error_16px.png")
-                                                    .pixmap(QSize(iIconMetric, iIconMetric)));
-
-                    /* Add into layout: */
-                    pLayoutSize->addWidget(m_pErrorPaneSize, 0, 1);
+                                                .pixmap(QSize(iIconMetric, iIconMetric)));
+
+                    /* Add into layout: */
+                    pLayoutSize->addWidget(m_pErrorPaneSize, 0, 1, Qt::AlignCenter);
                 }
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumDetailsWidget.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumDetailsWidget.h	(revision 67964)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumDetailsWidget.h	(revision 67965)
@@ -201,5 +201,5 @@
         void sltLocationPathChanged(const QString &strPath);
         /** Handles size editor change. */
-        void sltSizeEditorChanged(qulonglong uSize);
+        void sltSizeValueChanged(qulonglong uSize);
 
         /** Handles button-box button click. */
@@ -277,9 +277,9 @@
 
         /** Holds the location label. */
-        QLabel    *m_pLabelLocation;
+        QLabel             *m_pLabelLocation;
         /** Holds the location selector. */
         UIFilePathSelector *m_pSelectorLocation;
         /** Holds the location error pane. */
-        QLabel    *m_pErrorPaneLocation;
+        QLabel             *m_pErrorPaneLocation;
 
         /** Holds the size label. */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp	(revision 67964)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp	(revision 67965)
@@ -943,8 +943,8 @@
         /* Show error message if necessary: */
         if (!comMedium.isOk())
-            msgCenter().cannotMoveHardDiskStorage(comMedium,
-                                                  oldData.m_options.m_strLocation,
-                                                  newData.m_options.m_strLocation,
-                                                  this);
+            msgCenter().cannotMoveMediumStorage(comMedium,
+                                                oldData.m_options.m_strLocation,
+                                                newData.m_options.m_strLocation,
+                                                this);
         else
         {
@@ -955,8 +955,8 @@
             /* Show error message if necessary: */
             if (!comProgress.isOk() || comProgress.GetResultCode() != 0)
-                msgCenter().cannotMoveHardDiskStorage(comProgress,
-                                                      oldData.m_options.m_strLocation,
-                                                      newData.m_options.m_strLocation,
-                                                      this);
+                msgCenter().cannotMoveMediumStorage(comProgress,
+                                                    oldData.m_options.m_strLocation,
+                                                    newData.m_options.m_strLocation,
+                                                    this);
         }
     }
