Changeset 35448 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 10, 2011 11:12:48 AM (14 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.h
r31698 r35448 6 6 7 7 /* 8 * Copyright (C) 2010 Oracle Corporation8 * Copyright (C) 2010-2011 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 236 236 UIMachineView *m_pMachineView; 237 237 RTCRITSECT m_critSect; 238 intm_width;239 intm_height;238 ulong m_width; 239 ulong m_height; 240 240 QSize m_scaledSize; 241 241 int64_t m_WinId; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBufferQImage.cpp
r34850 r35448 7 7 8 8 /* 9 * Copyright (C) 2010 Oracle Corporation9 * Copyright (C) 2010-2011 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 93 93 QPainter painter(m_pMachineView->viewport()); 94 94 95 if ( r.width() < m_width * 2 / 3)95 if ((ulong)r.width() < m_width * 2 / 3) 96 96 { 97 97 /* This method is faster for narrow updates */
Note:
See TracChangeset
for help on using the changeset viewer.