Jacek Caban : ieframe: Added InternetExplorer::GoBack implementation.

Alexandre Julliard julliard at winehq.org
Fri Jan 20 13:09:31 CST 2012


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Fri Jan 20 15:16:26 2012 +0100

ieframe: Added InternetExplorer::GoBack implementation.

---

 dlls/ieframe/ie.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ieframe/ie.c b/dlls/ieframe/ie.c
index 3cd54bc..c7357e9 100644
--- a/dlls/ieframe/ie.c
+++ b/dlls/ieframe/ie.c
@@ -142,8 +142,8 @@ static HRESULT WINAPI InternetExplorer_Invoke(IWebBrowser2 *iface, DISPID dispId
 static HRESULT WINAPI InternetExplorer_GoBack(IWebBrowser2 *iface)
 {
     InternetExplorer *This = impl_from_IWebBrowser2(iface);
-    FIXME("(%p)\n", This);
-    return E_NOTIMPL;
+    TRACE("(%p)\n", This);
+    return go_back(&This->doc_host->doc_host);
 }
 
 static HRESULT WINAPI InternetExplorer_GoForward(IWebBrowser2 *iface)




More information about the wine-cvs mailing list