- Timestamp:
- May 8, 2012 1:53:03 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display.cpp
r34918 r41207 173 173 | VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED, 174 174 RT_INDEFINITE_WAIT, &fEvents); 175 if (RT_FAILURE(rc) && rc != VERR_INTERRUPTED) /* VERR_NO_MEMORY? */ 176 return rc; 175 177 /* Jiggle the mouse pointer to wake up the driver. */ 176 178 XGrabPointer(pDisplay, -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r28800 r41207 40 40 return VERR_NOT_SUPPORTED; 41 41 } 42 mSeamless.init(); 42 int rc = mSeamless.init(); 43 if (RT_FAILURE(rc)) 44 return rc; 43 45 /* Stay running as long as X does... */ 44 46 Display *pDisplay = XOpenDisplay(NULL);
Note:
See TracChangeset
for help on using the changeset viewer.