Dmitry Timoshkov : shell32: Return S_OK from IDropTargetHelper::Show().

Alexandre Julliard julliard at winehq.org
Thu Sep 19 16:35:18 CDT 2019


Module: wine
Branch: master
Commit: f6ecc6be42b887f20ca698d73af362a18e392537
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f6ecc6be42b887f20ca698d73af362a18e392537

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Thu Sep 19 14:39:02 2019 +0800

shell32: Return S_OK from IDropTargetHelper::Show().

Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/shell32/dragdrophelper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/shell32/dragdrophelper.c b/dlls/shell32/dragdrophelper.c
index 425ee71b9f..55a906afd5 100644
--- a/dlls/shell32/dragdrophelper.c
+++ b/dlls/shell32/dragdrophelper.c
@@ -155,7 +155,7 @@ static HRESULT WINAPI IDropTargetHelper_fnShow (IDropTargetHelper * iface, BOOL
 {
     dragdrophelper *This = impl_from_IDropTargetHelper(iface);
     FIXME ("(%p)->(%u)\n", This, fShow);
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static const IDropTargetHelperVtbl DropTargetHelperVtbl =




More information about the wine-cvs mailing list