shdocvw: Return success code in ITaskBarList::HrInit.

This commit is contained in:
Andrey Turkin 2010-03-02 07:55:00 +03:00 committed by Alexandre Julliard
parent 0ed4c6df24
commit 46a04b72c0
1 changed files with 2 additions and 2 deletions

View File

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