Changeset 8291 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Apr 22, 2008 1:37:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/xclient/main.cpp
r8155 r8291 113 113 XGetErrorText(pDisplay, pError->error_code, errorText, sizeof(errorText)); 114 114 LogRel(("VBoxClient: an X Window protocol error occurred: %s (error code %d). Request code: %d, minor code: %d, serial number: %d\n", errorText, pError->error_code, pError->request_code, pError->minor_code, pError->serial)); 115 /** Disable seamless mode */ 116 VbglR3SeamlessSetCap(false); 115 117 VbglR3Term(); 116 118 exit(1); … … 124 126 { 125 127 Log(("VBoxClient: a fatal guest X Window error occurred. This may just mean that the Window system was shut down while the client was still running.\n")); 128 /** Disable seamless mode */ 129 VbglR3SeamlessSetCap(false); 126 130 VbglR3Term(); 127 131 return gpfnOldIOErrorHandler(pDisplay); … … 135 139 { 136 140 Log(("VBoxClient: terminated with signal %d\n", cSignal)); 141 /** Disable seamless mode */ 142 VbglR3SeamlessSetCap(false); 143 VbglR3Term(); 137 144 /* Our pause() call will now return and exit. */ 138 145 }
Note:
See TracChangeset
for help on using the changeset viewer.