mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
mshtml: Return S_OK in IHTMLStyle2::put_behavior.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ed62ae5faa
commit
a0561068e3
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue