Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp	(revision 27497)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp	(revision 27498)
@@ -304,7 +304,5 @@
     /* If we are not doing automatic geometry calculation then there is nothing to do: */
     if (desktopGeometryType() == DesktopGeo_Automatic)
-    {
-        m_desktopGeometry = QSize(workingArea().width(), workingArea().height());
-    }
+        m_desktopGeometry = workingArea().size();
 }
 
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp	(revision 27497)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp	(revision 27498)
@@ -305,7 +305,5 @@
     /* If we are not doing automatic geometry calculation then there is nothing to do: */
     if (desktopGeometryType() == DesktopGeo_Automatic)
-    {
-        m_desktopGeometry = QSize(workingArea().width(), workingArea().height());
-    }
-}
-
+        m_desktopGeometry = workingArea().size();
+}
+
