[vbox-dev] Resizing of Windows guest not working in SVN Build =>r39104

Michael Thayer michael.thayer at oracle.com
Mon Oct 31 23:11:33 GMT 2011


Hello Perry,

On 10/27/2011 09:28 PM, Perry Halbert wrote:
> I have another issue that I am starting to think has something to
> do with the new builds. In Win7 and Vista (shudder I know but it must
> be tested) I can not resize the guest. log shows a video hint but the
> actual guest area does not grow. I am using the release 4.1.4 now and
> it was working just fine until the update from svn r39104.
My fault, and thanks for spotting it.  The following patch (soon to be 
committed to svn) should fix it.

Regards,

Michael
--- src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp 
(revision 74543)
+++ src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp	(working 
copy)
@@ -635,7 +635,7 @@
              maxSize = QSize(0, 0);
      }
      ASMAtomicWriteU64(&m_u64MaxGuestSize,
-                      RT_MAKE_U64(maxSize.width(), maxSize.height()));
+                      RT_MAKE_U64(maxSize.height(), maxSize.width()));
  }

  QSize UIMachineView::maxGuestSize()

-- 
ORACLE Deutschland B.V. & Co. KG   Michael Thayer
Werkstrasse 24                     VirtualBox engineering
71384 Weinstadt, Germany           mailto:michael.thayer at oracle.com

Hauptverwaltung: Riesstr. 25, D-80992 München
Registergericht: Amtsgericht München, HRA 95603

Komplementärin: ORACLE Deutschland Verwaltung B.V.
Hertogswetering 163/167, 3543 AS Utrecht, Niederlande
Handelsregister der Handelskammer Midden-Niederlande, Nr. 30143697
Geschäftsführer: Jürgen Kunz, Marcel van de Molen, Alexander van der Ven




More information about the vbox-dev mailing list