Changeset 55571 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Apr 30, 2015 5:04:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r55459 r55571 1184 1184 * Do we have a new window which now is under the cursor? 1185 1185 */ 1186 if ( wndCursor != m_wndCur 1186 if ( wndCursor != m_wndCur 1187 1187 && newVer != -1) 1188 1188 { … … 1338 1338 if (RT_UNLIKELY(xrc == 0)) 1339 1339 { 1340 logError(("Error sending SelectionNotify event to window=%#x: %s\n", 1340 logError(("Error sending SelectionNotify event to window=%#x: %s\n", 1341 1341 s.xselection.requestor, gX11->xErrorToString(xrc).c_str())); 1342 1342 } … … 1448 1448 } 1449 1449 1450 /* 1450 /* 1451 1451 * Acknowledge the event by sending a status message back to the window. 1452 1452 */ … … 1466 1466 if (RT_UNLIKELY(xRc == 0)) 1467 1467 { 1468 logError(("Error sending enter XA_XdndStatus to current window=%#x: %s\n", 1468 logError(("Error sending enter XA_XdndStatus to current window=%#x: %s\n", 1469 1469 m_wndCur, gX11->xErrorToString(xRc).c_str())); 1470 1470 } … … 1492 1492 if (RT_UNLIKELY(xRc == 0)) 1493 1493 { 1494 logError(("Error sending position XA_XdndStatus to current window=%#x: %s\n", 1494 logError(("Error sending position XA_XdndStatus to current window=%#x: %s\n", 1495 1495 m_wndCur, gX11->xErrorToString(xRc).c_str())); 1496 1496 } … … 1691 1691 if (RT_UNLIKELY(xrc == 0)) 1692 1692 { 1693 logError(("Error sending XA_XdndFinished to proxy window=%#x: %s\n", 1693 logError(("Error sending XA_XdndFinished to proxy window=%#x: %s\n", 1694 1694 m_wndProxy, gX11->xErrorToString(xrc).c_str())); 1695 1695 } … … 2326 2326 if (rc == VERR_INVALID_PARAMETER) 2327 2327 cMsgSkippedInvalid++; 2328 if (cMsgSkippedInvalid > 3 )2328 if (cMsgSkippedInvalid > 32) 2329 2329 { 2330 2330 LogRel(("DnD: Too many invalid/skipped messages from host, exiting ...\n"));
Note:
See TracChangeset
for help on using the changeset viewer.