Jacek Caban : ieframe: Added InternetExplorer::GoBack implementation.
Module: wine Branch: master Commit: 82c826f6fc7a7684cad99501a9a5670b29188720 URL: http://source.winehq.org/git/wine.git/?a=commit;h=82c826f6fc7a7684cad99501a9... Author: Jacek Caban <jacek(a)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)
participants (1)
-
Alexandre Julliard