Changeset 55571 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Apr 30, 2015 5:04:37 PM (10 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r55422 r55571 1424 1424 /* 1425 1425 * Note: Don't clear this->lstAllowedFormats at the moment, as this value is initialized 1426 * on class creation. We might later want to modify the allowed formats inruntime,1426 * on class creation. We might later want to modify the allowed formats at runtime, 1427 1427 * so keep this in mind when implementing this. 1428 1428 */ … … 1665 1665 * don't support the stuff we do on the guest side, so make sure we 1666 1666 * don't process invalid messages forever. */ 1667 if (cMsgSkippedInvalid++ > 3) 1667 if (rc == VERR_INVALID_PARAMETER) 1668 cMsgSkippedInvalid++; 1669 if (cMsgSkippedInvalid > 32) 1668 1670 { 1669 1671 LogRel(("DnD: Too many invalid/skipped messages from host, exiting ...\n")); -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r55556 r55571 552 552 } 553 553 554 #if 0 554 #if 0 /* Not used yet. */ 555 555 if (pCtx->uProtocol >= XXX) 556 556 { -
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.