Changeset 56652 in vbox for trunk/src/VBox
- Timestamp:
- Jun 26, 2015 8:28:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r56575 r56652 782 782 } 783 783 784 LogFlowFuncLeaveRC(rc); 784 785 return rc; 785 786 } … … 818 819 AssertPtr(pcbFormatRecv); 819 820 if (DnDMIMEHasFileURLs(pszFormat, *pcbFormatRecv)) 820 {821 821 rc = vbglR3DnDHGProcessURIMessages(pCtx, 822 822 ppvData, 823 823 cbData, 824 824 pcbDataRecv); 825 }826 else827 rc = VERR_NOT_SUPPORTED;828 829 825 if (RT_FAILURE(rc)) 830 826 { 831 if (RT_FAILURE(rc)) 832 { 833 int rc2 = VbglR3DnDHGSetProgress(pCtx, DragAndDropSvc::DND_PROGRESS_ERROR, 100 /* Percent */, rc); 834 AssertRC(rc2); 835 } 836 } 837 } 838 827 int rc2 = VbglR3DnDHGSetProgress(pCtx, DragAndDropSvc::DND_PROGRESS_ERROR, 100 /* Percent */, rc); 828 AssertRC(rc2); 829 } 830 } 831 832 LogFlowFuncLeaveRC(rc); 839 833 return rc; 840 834 }
Note:
See TracChangeset
for help on using the changeset viewer.