Sinitsin Ivan : mshtml: Add HTMLWindow_scrollBy implementation.

Alexandre Julliard julliard at winehq.org
Thu Jul 3 06:35:43 CDT 2008


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

Author: Sinitsin Ivan <ivan at 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)




More information about the wine-cvs mailing list