Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp	(revision 61582)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp	(revision 61583)
@@ -351,18 +351,8 @@
     /* And corresponding working area: */
     const QRect workingArea = vboxGlobal().screenGeometry(iHostScreen);
-
-#if   defined(VBOX_WS_WIN) || defined(VBOX_WS_X11)
-    /* Set appropriate geometry for window: */
-    resize(workingArea.size());
-    move(workingArea.topLeft());
-
-    /* If there is a mini-toolbar: */
-    if (m_pMiniToolBar)
-    {
-        /* Set appropriate geometry for mini-toolbar: */
-        m_pMiniToolBar->resize(workingArea.size());
-        m_pMiniToolBar->move(workingArea.topLeft());
-    }
-#elif defined(VBOX_WS_MAC)
+    Q_UNUSED(workingArea);
+
+#if defined(VBOX_WS_MAC)
+
     /* Make sure this window has fullscreen logic: */
     UIMachineLogicFullscreen *pFullscreenLogic = qobject_cast<UIMachineLogicFullscreen*>(machineLogic());
@@ -396,5 +386,38 @@
         setGeometry(geo);
     }
-#endif /* VBOX_WS_MAC */
+
+#elif defined(VBOX_WS_WIN)
+
+    /* Set appropriate geometry for window: */
+    resize(workingArea.size());
+    move(workingArea.topLeft());
+
+    /* If there is a mini-toolbar: */
+    if (m_pMiniToolBar)
+    {
+        /* Set appropriate geometry for mini-toolbar: */
+        m_pMiniToolBar->resize(workingArea.size());
+        m_pMiniToolBar->move(workingArea.topLeft());
+    }
+
+#elif defined(VBOX_WS_X11)
+
+    /* Set appropriate geometry for window: */
+    resize(workingArea.size());
+    move(workingArea.topLeft());
+
+    /* If there is a mini-toolbar: */
+    if (m_pMiniToolBar)
+    {
+        /* Set appropriate geometry for mini-toolbar: */
+        m_pMiniToolBar->resize(workingArea.size());
+        m_pMiniToolBar->move(workingArea.topLeft());
+    }
+
+#else
+
+# warning "port me"
+
+#endif
 }
 
