Alistair Leslie-Hughes : mshtml: Implement HTMLStyle get_background.
Module: wine Branch: master Commit: 059c3ab6501ed7331063daf5b53994be7edef55e URL: http://source.winehq.org/git/wine.git/?a=commit;h=059c3ab6501ed7331063daf5b5... Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Date: Wed Aug 13 09:29:57 2008 +1000 mshtml: Implement HTMLStyle get_background. --- dlls/mshtml/htmlstyle.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlstyle.c b/dlls/mshtml/htmlstyle.c index e4bc483..dfc5ff3 100644 --- a/dlls/mshtml/htmlstyle.c +++ b/dlls/mshtml/htmlstyle.c @@ -455,8 +455,10 @@ static HRESULT WINAPI HTMLStyle_put_background(IHTMLStyle *iface, BSTR v) static HRESULT WINAPI HTMLStyle_get_background(IHTMLStyle *iface, BSTR *p) { HTMLStyle *This = HTMLSTYLE_THIS(iface); - FIXME("(%p)->(%p)\n", This, p); - return E_NOTIMPL; + + TRACE("(%p)->(%p)\n", This, p); + + return get_style_attr(This, attrBackground, p); } static HRESULT WINAPI HTMLStyle_put_backgroundColor(IHTMLStyle *iface, VARIANT v)
participants (1)
-
Alexandre Julliard