Commit be6a1131 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

explorerframe: Return S_OK in ITaskbarList3 ThumbBarUpdateButtons method.

parent 570ea014
......@@ -205,9 +205,9 @@ static HRESULT STDMETHODCALLTYPE taskbar_list_ThumbBarUpdateButtons(ITaskbarList
UINT cButtons,
LPTHUMBBUTTON pButton)
{
FIXME("iface %p, hwnd %p, cButtons %u, pButton %p stub!\n", iface, hwnd, cButtons, pButton);
FIXME("iface %p, hwnd %p, cButtons %u, pButton %p stub, faking success!\n", iface, hwnd, cButtons, pButton);
return E_NOTIMPL;
return S_OK;
}
static HRESULT STDMETHODCALLTYPE taskbar_list_ThumbBarSetImageList(ITaskbarList4 *iface,
......
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