ieframe: Added InternetExplorer::GoBack implementation.

This commit is contained in:
Jacek Caban 2012-01-20 15:16:26 +01:00 committed by Alexandre Julliard
parent 51c141ab4c
commit 82c826f6fc
1 changed files with 2 additions and 2 deletions

View File

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