Index: /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIBootTable.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIBootTable.cpp	(revision 46847)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIBootTable.cpp	(revision 46848)
@@ -81,12 +81,5 @@
     int w = h;
 #if QT_VERSION < 0x040700
-# ifdef Q_WS_MAC
-    int left, top, right, bottom;
-    getContentsMargins(&left, &top, &right, &bottom);
-    h += top + bottom;
-    w += left + right;
-# else /* Q_WS_MAC */
-    w += 4;
-# endif /* !Q_WS_MAC */
+    w += 4; // WTF?
 #endif /* QT_VERSION < 0x040700 */
     setFixedSize(sizeHintForColumn(0) + w,
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic2.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic2.cpp	(revision 46847)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic2.cpp	(revision 46848)
@@ -75,10 +75,10 @@
 {
     setFinalPage(pButton != m_pFullCloneRadio);
+#if QT_VERSION < 0x040700
     /* On older Qt versions the content of the current page isn't updated when
      * using setFinalPage. So switch back and for to simulate it. */
-#if QT_VERSION < 0x040700
     wizard()->back();
     wizard()->next();
-#endif
+#endif /* QT_VERSION < 0x040700 */
 }
 
