Changeset 79207 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Jun 18, 2019 11:18:17 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r76553 r79207 690 690 if (FAILED(hr)) 691 691 { 692 LogRel(("DnD: Creating drop target failed with hr=%Rhrc\n", hr)); 693 rc = VERR_GENERAL_FAILURE; /** @todo Find a better rc. */ 692 if (hr != DRAGDROP_E_INVALIDHWND) /* Could be because the DnD host service is not available. */ 693 LogRel(("DnD: Creating drop target failed with hr=%Rhrc\n", hr)); 694 rc = VERR_NOT_SUPPORTED; /* Report back DnD as not being supported. */ 694 695 } 695 696 else
Note:
See TracChangeset
for help on using the changeset viewer.