Module: wine Branch: master Commit: a0561068e3987e08d80d492de17e505d5934d75b URL: http://source.winehq.org/git/wine.git/?a=commit;h=a0561068e3987e08d80d492de1...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Nov 28 17:31:33 2017 +0100
mshtml: Return S_OK in IHTMLStyle2::put_behavior.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/mshtml/htmlstyle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mshtml/htmlstyle.c b/dlls/mshtml/htmlstyle.c index 12ce92b..fcec264 100644 --- a/dlls/mshtml/htmlstyle.c +++ b/dlls/mshtml/htmlstyle.c @@ -3256,7 +3256,7 @@ static HRESULT WINAPI HTMLStyle2_put_behavior(IHTMLStyle2 *iface, BSTR v) { HTMLStyle *This = impl_from_IHTMLStyle2(iface); FIXME("(%p)->(%s)\n", This, debugstr_w(v)); - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI HTMLStyle2_get_behavior(IHTMLStyle2 *iface, BSTR *p)