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@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Louis Lenders 2020-08-18 13:41:08 +02:00 committed by Alexandre Julliard
parent f332f2e4e2
commit 2b85d7e21c
1 changed files with 1 additions and 1 deletions

View File

@ -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)