Louis Lenders : explorerframe: Return S_OK in ITaskbarList::SetOverlayIcon.

Alexandre Julliard julliard at winehq.org
Tue Nov 10 13:46:22 CST 2020


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

Author: Louis Lenders <xerox.xerox2000x at gmail.com>
Date:   Fri Jun  5 13:33:57 2020 +0200

explorerframe: Return S_OK in ITaskbarList::SetOverlayIcon.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49322
Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit acc96fadd11a59d38afbbb8dddc6d65e7d655003)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

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

diff --git a/dlls/explorerframe/taskbarlist.c b/dlls/explorerframe/taskbarlist.c
index 44b8a8ab91b..1a0eb7567dc 100644
--- a/dlls/explorerframe/taskbarlist.c
+++ b/dlls/explorerframe/taskbarlist.c
@@ -227,7 +227,7 @@ static HRESULT STDMETHODCALLTYPE taskbar_list_SetOverlayIcon(ITaskbarList4 *ifac
     FIXME("iface %p, hwnd %p, hIcon %p, pszDescription %s stub!\n", iface, hwnd, hIcon,
           debugstr_w(pszDescription));
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static HRESULT STDMETHODCALLTYPE taskbar_list_SetThumbnailTooltip(ITaskbarList4 *iface,




More information about the wine-cvs mailing list