Changeset 8342 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 24, 2008 6:07:04 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30117
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r8337 r8342 1973 1973 + 4096 * 8; /* adapter info */ 1974 1974 CGuest guest = console->console().GetGuest(); 1975 ULONG maxWidth = guest.GetMaxGuestWidth();1976 ULONG maxHeight = guest.GetMaxGuestHeight();1975 LONG maxWidth = guest.GetMaxGuestWidth(); 1976 LONG maxHeight = guest.GetMaxGuestHeight(); 1977 1977 if (aOn && ( (availBits < usedBits) 1978 || ((maxWidth != 0) && (maxWidth < (ULONG)screen.width()))1979 || ((maxHeight != 0) && (maxHeight < (ULONG)screen.height()))1978 || ((maxWidth != 0) && (maxWidth < screen.width())) 1979 || ((maxHeight != 0) && (maxHeight < screen.height())) 1980 1980 ) 1981 1981 ) -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r8337 r8342 1996 1996 + 4096 * 8; /* adapter info */ 1997 1997 CGuest guest = console->console().GetGuest(); 1998 ULONG maxWidth = guest.GetMaxGuestWidth();1999 ULONG maxHeight = guest.GetMaxGuestHeight();1998 LONG maxWidth = guest.GetMaxGuestWidth(); 1999 LONG maxHeight = guest.GetMaxGuestHeight(); 2000 2000 if (aOn && ( (availBits < usedBits) 2001 2001 || ((maxWidth != 0) && (maxWidth < screen.width()))
Note:
See TracChangeset
for help on using the changeset viewer.