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

Alexandre Julliard julliard at winehq.org
Tue Mar 23 15:07:39 CDT 2021


Module: wine
Branch: oldstable
Commit: 01d2b6d5e5bb086fb6dd25d9ef96828bbe8e337a
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=01d2b6d5e5bb086fb6dd25d9ef96828bbe8e337a

Author: Louis Lenders <xerox.xerox2000x at gmail.com>
Date:   Tue Aug 18 13:41:08 2020 +0200

explorerframe: Return S_OK in ITaskbarList::RegisterTab.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49719
Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 2b85d7e21cd86fdc3fef955d73c927c27b8a26f6)
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 1a0eb7567dc..6f24f359927 100644
--- a/dlls/explorerframe/taskbarlist.c
+++ b/dlls/explorerframe/taskbarlist.c
@@ -161,7 +161,7 @@ static HRESULT STDMETHODCALLTYPE taskbar_list_RegisterTab(ITaskbarList4 *iface,
 {
     FIXME("iface %p, hwndTab %p, hwndMDI %p stub!\n", iface, hwndTab, hwndMDI);
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static HRESULT STDMETHODCALLTYPE taskbar_list_UnregisterTab(ITaskbarList4 *iface, HWND hwndTab)




More information about the wine-cvs mailing list