Module: wine Branch: master Commit: acc96fadd11a59d38afbbb8dddc6d65e7d655003 URL: https://source.winehq.org/git/wine.git/?a=commit;h=acc96fadd11a59d38afbbb8dd...
Author: Louis Lenders xerox.xerox2000x@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@gmail.com Signed-off-by: Alexandre Julliard julliard@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 44b8a8ab91..1a0eb7567d 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,