Module: wine Branch: master Commit: 481360f472b91e1a91c0f1d51183ca3be88ff2ab URL: https://source.winehq.org/git/wine.git/?a=commit;h=481360f472b91e1a91c0f1d51...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Oct 17 16:18:05 2018 +0200
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
---
dlls/mshtml/htmldoc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c index 17c9e63..fc22fa5 100644 --- a/dlls/mshtml/htmldoc.c +++ b/dlls/mshtml/htmldoc.c @@ -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)