Commit 46a04b72 authored by Andrey Turkin's avatar Andrey Turkin Committed by Alexandre Julliard

shdocvw: Return success code in ITaskBarList::HrInit.

parent 0ed4c6df
...@@ -81,9 +81,9 @@ static ULONG STDMETHODCALLTYPE taskbar_list_Release(ITaskbarList *iface) ...@@ -81,9 +81,9 @@ static ULONG STDMETHODCALLTYPE taskbar_list_Release(ITaskbarList *iface)
static HRESULT STDMETHODCALLTYPE taskbar_list_HrInit(ITaskbarList *iface) static HRESULT STDMETHODCALLTYPE taskbar_list_HrInit(ITaskbarList *iface)
{ {
FIXME("iface %p stub!\n", iface); TRACE("iface %p\n", iface);
return E_NOTIMPL; return S_OK;
} }
static HRESULT STDMETHODCALLTYPE taskbar_list_AddTab(ITaskbarList *iface, HWND hwnd) static HRESULT STDMETHODCALLTYPE taskbar_list_AddTab(ITaskbarList *iface, HWND hwnd)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment