Module: wine Branch: master Commit: ab70f33151c76e6bedce723fa8fca4b3fa4d25d5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ab70f33151c76e6bedce723fa8...
Author: Alistair Leslie-Hughes leslie_alistair@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)