explorerframe: Return S_OK in ITaskbarList3 ThumbBarAddButtons.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45429
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 570ea01477)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
oldstable
Louis Lenders 2019-03-18 17:42:26 +01:00 committed by Michael Stefaniuc
parent 7bb2f00bc5
commit b49784271f
1 changed files with 2 additions and 2 deletions

View File

@ -195,9 +195,9 @@ static HRESULT STDMETHODCALLTYPE taskbar_list_ThumbBarAddButtons(ITaskbarList4 *
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_ThumbBarUpdateButtons(ITaskbarList4 *iface,