Commit 481360f4 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Return S_OK in IHTMLDocument2::put_charset.

parent cae3d28a
......@@ -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)
......
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