- Timestamp:
- Nov 30, 2010 3:17:06 PM (14 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.cpp
r34490 r34523 4797 4797 } 4798 4798 4799 #if 0 4799 4800 static DECLCALLBACK(void) vboxQGLOverlaySaveExec(PSSMHANDLE pSSM, void *pvUser) 4800 4801 { … … 4802 4803 fb->vhwaSaveExec(pSSM); 4803 4804 } 4805 #endif 4804 4806 4805 4807 static DECLCALLBACK(int) vboxQGLOverlayLoadExec(PSSMHANDLE pSSM, void *pvUser, uint32_t u32Version, uint32_t uPass) … … 5275 5277 if (RT_SUCCESS(rc)) 5276 5278 { 5277 postCmd(VBOXVHWA_PIPECMD_PAINT, &QRect(x,y,w,h), 0); 5279 QRect r = QRect(x, y, w, h); 5280 postCmd(VBOXVHWA_PIPECMD_PAINT, &r, 0); 5278 5281 } 5279 5282 break; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r34476 r34523 136 136 { 137 137 /* Check if we should release keyboard first: */ 138 if ( uIndex == m_iKeyboardCaptureViewIndex)138 if ((int)uIndex == m_iKeyboardCaptureViewIndex) 139 139 releaseKeyboard(); 140 140 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r34476 r34523 118 118 { 119 119 /* Check if we should release mouse first: */ 120 if ( uIndex == m_iMouseCaptureViewIndex)120 if ((int)uIndex == m_iMouseCaptureViewIndex) 121 121 releaseMouse(); 122 122
Note:
See TracChangeset
for help on using the changeset viewer.