explorerframe: Return S_OK in ITaskbarList3 SetThumbnailTooltip method.

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 978b7c3474)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
oldstable
Louis Lenders 2019-03-18 17:42:25 +01:00 committed by Michael Stefaniuc
parent 9e5e27a7d2
commit 7bb2f00bc5
1 changed files with 2 additions and 2 deletions

View File

@ -234,9 +234,9 @@ static HRESULT STDMETHODCALLTYPE taskbar_list_SetThumbnailTooltip(ITaskbarList4
HWND hwnd,
LPCWSTR pszTip)
{
FIXME("iface %p, hwnd %p, pszTip %s stub!\n", iface, hwnd, debugstr_w(pszTip));
FIXME("iface %p, hwnd %p, pszTip %s stub, faking success!\n", iface, hwnd, debugstr_w(pszTip));
return E_NOTIMPL;
return S_OK;
}
static HRESULT STDMETHODCALLTYPE taskbar_list_SetThumbnailClip(ITaskbarList4 *iface,