Andrey Turkin : shdocvw: Return success code in ITaskBarList::HrInit.
Module: wine Branch: master Commit: 46a04b72c03bd8438bd95d349a8cc5313e592705 URL: http://source.winehq.org/git/wine.git/?a=commit;h=46a04b72c03bd8438bd95d349a... Author: Andrey Turkin <andrey.turkin(a)gmail.com> Date: Tue Mar 2 07:55:00 2010 +0300 shdocvw: Return success code in ITaskBarList::HrInit. --- dlls/shdocvw/taskbarlist.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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 ULONG STDMETHODCALLTYPE taskbar_list_Release(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)
participants (1)
-
Alexandre Julliard