mshtml: Return S_OK in IHTMLDocument2::put_charset.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=38189
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2018-10-17 16:18:05 +02:00 committed by Alexandre Julliard
parent cae3d28a9b
commit 481360f472
1 changed files with 2 additions and 2 deletions

View File

@ -910,8 +910,8 @@ static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BO
static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
{
HTMLDocument *This = impl_from_IHTMLDocument2(iface);
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
return E_NOTIMPL;
FIXME("(%p)->(%s) returning S_OK\n", This, debugstr_w(v));
return S_OK;
}
static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)