Changeset 86869 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Nov 12, 2020 7:59:52 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/VBoxDragAndDropSvc.cpp
r85749 r86869 147 147 void DragAndDropClient::disconnect(void) RT_NOEXCEPT 148 148 { 149 LogFlowThisFunc(("uClient=%RU32\n", m_idClient)); 150 149 LogFlowThisFunc(("uClient=%RU32, fDeferred=%RTbool\n", m_idClient, IsDeferred())); 150 151 /* 152 * If the client still is waiting for a message (i.e in deferred mode), 153 * complete the call with a VERR_CANCELED status so that the client (VBoxTray / VBoxClient) knows 154 * it should bail out. 155 */ 151 156 if (IsDeferred()) 152 CompleteDeferred(VERR_ INTERRUPTED);157 CompleteDeferred(VERR_CANCELLED); 153 158 154 159 /* … … 471 476 break; 472 477 } 473 474 #ifdef DEBUG_andy475 LogFlowFunc(("Mode (%RU32) check rc=%Rrc\n", modeGet(), rc));476 #endif477 478 478 479 #define DO_HOST_CALLBACK(); \ … … 1028 1029 if (rc == VINF_HGCM_ASYNC_EXECUTE) 1029 1030 { 1031 LogFlowFunc(("Deferring client %RU32\n", idClient)); 1032 1030 1033 try 1031 1034 {
Note:
See TracChangeset
for help on using the changeset viewer.