mshtml: Implement IHTMLTextContainer get_scrollLeft.

This commit is contained in:
Alistair Leslie-Hughes 2008-09-10 20:51:29 +10:00 committed by Alexandre Julliard
parent fdaa0aff56
commit ab70f33151
1 changed files with 4 additions and 2 deletions

View File

@ -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)