Module: wine Branch: stable Commit: c4849480ac9974b95f2af24e1fc54324c723148e URL: https://source.winehq.org/git/wine.git/?a=commit;h=c4849480ac9974b95f2af24e1...
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 (cherry picked from commit acc96fadd11a59d38afbbb8dddc6d65e7d655003) Signed-off-by: Michael Stefaniuc mstefani@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,