Changeset 56494 in vbox
- Timestamp:
- Jun 18, 2015 10:28:28 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp
r55963 r56494 835 835 int GuestDnDBase::sendCancel(void) 836 836 { 837 LogFlowFunc(("Generating cancel request ...\n"));838 839 837 int rc; 840 838 try … … 850 848 } 851 849 850 LogFlowFunc(("Generated cancelling request, rc=%Rrc\n", rc)); 852 851 return rc; 853 852 } … … 874 873 } 875 874 else if (rc == VERR_TIMEOUT) /* Continue waiting. */ 876 continue;875 rc = VINF_SUCCESS; 877 876 878 877 if ( msTimeout != RT_INDEFINITE_WAIT … … 880 879 { 881 880 rc = VERR_TIMEOUT; 882 Log FlowFunc(("Guest did not respond within time\n"));881 LogRel2(("DnD: Error: Guest did not respond within time\n")); 883 882 } 884 883 else if (pResp->isProgressCanceled()) /** @todo GuestDnDResponse *pResp needs to go. */ 885 884 { 886 Log FlowFunc(("Canceled by user\n"));885 LogRel2(("DnD: Operation was canceled by user\n")); 887 886 rc = VERR_CANCELLED; 888 887 }
Note:
See TracChangeset
for help on using the changeset viewer.

