commit | 46a04b72c03bd8438bd95d349a8cc5313e592705 | [log] [tgz] |
---|---|---|
author | Andrey Turkin <andrey.turkin@gmail.com> | Tue Mar 02 07:55:00 2010 +0300 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Mar 02 11:14:00 2010 +0100 |
tree | b68d83cb3d1b46cec3266f1065efb6351addf919 | |
parent | 0ed4c6df24a040c32ada6f49c91f81b226670e5c [diff] |
shdocvw: Return success code in ITaskBarList::HrInit.
diff --git a/dlls/shdocvw/taskbarlist.c b/dlls/shdocvw/taskbarlist.c index 0281695..2c38080 100644 --- a/dlls/shdocvw/taskbarlist.c +++ b/dlls/shdocvw/taskbarlist.c
@@ -81,9 +81,9 @@ 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)