Module: wine Branch: master Commit: 2b4dcb2577ce1724d1d830e4519dd6257cbd48fa URL: http://source.winehq.org/git/wine.git/?a=commit;h=2b4dcb2577ce1724d1d830e451...
Author: Sinitsin Ivan ivan@etersoft.ru Date: Wed Jul 2 10:22:56 2008 +0400
mshtml: Add HTMLWindow_scrollBy implementation.
---
dlls/mshtml/htmlwindow.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmlwindow.c b/dlls/mshtml/htmlwindow.c index 9943b63..e3f8e75 100644 --- a/dlls/mshtml/htmlwindow.c +++ b/dlls/mshtml/htmlwindow.c @@ -642,8 +642,8 @@ static HRESULT WINAPI HTMLWindow2_toString(IHTMLWindow2 *iface, BSTR *String) static HRESULT WINAPI HTMLWindow2_scrollBy(IHTMLWindow2 *iface, long x, long y) { HTMLWindow *This = HTMLWINDOW2_THIS(iface); - FIXME("(%p)->(%ld %ld)\n", This, x, y); - return E_NOTIMPL; + TRACE("(%p)->(%ld %ld)\n", This, x, y); + return nsIDOMWindow_ScrollBy(This->nswindow, x, y); }
static HRESULT WINAPI HTMLWindow2_scrollTo(IHTMLWindow2 *iface, long x, long y)