]> git.pld-linux.org Git - packages/VirtualBox.git/commitdiff
- patch to remove max display resolution limit on guest systems
authorhawk <hawk@pld-linux.org>
Tue, 13 May 2008 11:31:18 +0000 (11:31 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    VirtualBox-no-screen-size-limit.patch -> 1.1

VirtualBox-no-screen-size-limit.patch [new file with mode: 0644]

diff --git a/VirtualBox-no-screen-size-limit.patch b/VirtualBox-no-screen-size-limit.patch
new file mode 100644 (file)
index 0000000..09539f2
--- /dev/null
@@ -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;
+ }
This page took 0.18298 seconds and 4 git commands to generate.