Jacek Caban : mshtml: Return S_OK in IHTMLStyle2::put_behavior.

Alexandre Julliard julliard at winehq.org
Tue Nov 28 15:11:05 CST 2017


Module: wine
Branch: master
Commit: a0561068e3987e08d80d492de17e505d5934d75b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a0561068e3987e08d80d492de17e505d5934d75b

Author: Jacek Caban <jacek at 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 at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at 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)




More information about the wine-cvs mailing list