SOURCES: VirtualBox-no-screen-size-limit.patch (NEW) - patch to remove max ...
hawk
hawk at pld-linux.org
Tue May 13 13:31:23 CEST 2008
Author: hawk Date: Tue May 13 11:31:23 2008 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- patch to remove max display resolution limit on guest systems
---- Files affected:
SOURCES:
VirtualBox-no-screen-size-limit.patch (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SOURCES/VirtualBox-no-screen-size-limit.patch
diff -u /dev/null SOURCES/VirtualBox-no-screen-size-limit.patch:1.1
--- /dev/null Tue May 13 13:31:23 2008
+++ SOURCES/VirtualBox-no-screen-size-limit.patch Tue May 13 13:31:18 2008
@@ -0,0 +1,16 @@
+diff -urN VirtualBox-1.6.0_OSE.orig/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp VirtualBox-1.6.0_OSE/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp
+--- VirtualBox-1.6.0_OSE.orig/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp 2008-05-13 13:28:35.000000000 +0200
++++ VirtualBox-1.6.0_OSE/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp 2008-05-13 13:29:45.000000000 +0200
+@@ -204,12 +204,6 @@
+ if (!aSupported)
+ return E_POINTER;
+ *aSupported = TRUE;
+- QRect screen = mView->getDesktopGeometry();
+- if (aWidth > (ULONG) screen.width())
+- *aSupported = FALSE;
+- if (aHeight > (ULONG) screen.height())
+- *aSupported = FALSE;
+- LogFlowThisFunc(("returning aSupported=%d\n", *aSupported));
+ return S_OK;
+ }
+
================================================================
More information about the pld-cvs-commit
mailing list