]> git.pld-linux.org Git - packages/VirtualBox.git/blob - VirtualBox-no-screen-size-limit.patch
- rel 5; BR kernel-headers
[packages/VirtualBox.git] / VirtualBox-no-screen-size-limit.patch
1 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
2 --- VirtualBox-1.6.0_OSE.orig/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp     2008-05-13 13:28:35.000000000 +0200
3 +++ VirtualBox-1.6.0_OSE/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp  2008-05-13 13:29:45.000000000 +0200
4 @@ -204,12 +204,6 @@
5      if (!aSupported)
6          return E_POINTER;
7      *aSupported = TRUE;
8 -    QRect screen = mView->getDesktopGeometry();
9 -    if (aWidth > (ULONG) screen.width())
10 -        *aSupported = FALSE;
11 -    if (aHeight > (ULONG) screen.height())
12 -        *aSupported = FALSE;
13 -    LogFlowThisFunc(("returning aSupported=%d\n", *aSupported));
14      return S_OK;
15  }
16  
This page took 0.063094 seconds and 3 git commands to generate.