Alistair Leslie-Hughes : mshtml: Implement IHTMLTextContainer get_scrollLeft.

Alexandre Julliard julliard at winehq.org
Thu Sep 11 08:01:02 CDT 2008


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

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Wed Sep 10 20:51:29 2008 +1000

mshtml: Implement IHTMLTextContainer get_scrollLeft.

---

 dlls/mshtml/htmltextcont.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/htmltextcont.c b/dlls/mshtml/htmltextcont.c
index f73bb0b..d96dfaf 100644
--- a/dlls/mshtml/htmltextcont.c
+++ b/dlls/mshtml/htmltextcont.c
@@ -141,8 +141,10 @@ static HRESULT WINAPI HTMLTextContainer_put_scrollLeft(IHTMLTextContainer *iface
 static HRESULT WINAPI HTMLTextContainer_get_scrollLeft(IHTMLTextContainer *iface, long *p)
 {
     HTMLTextContainer *This = HTMLTEXTCONT_THIS(iface);
-    FIXME("(%p)->(%p)\n", This, p);
-    return E_NOTIMPL;
+
+    TRACE("(%p)->(%p)\n", This, p);
+
+    return IHTMLElement2_get_scrollLeft(HTMLELEM2(&This->element), p);
 }
 
 static HRESULT WINAPI HTMLTextContainer_put_onscroll(IHTMLTextContainer *iface, VARIANT v)




More information about the wine-cvs mailing list