mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ieframe: Added InternetExplorer::GoBack implementation.
This commit is contained in:
parent
51c141ab4c
commit
82c826f6fc
1 changed files with 2 additions and 2 deletions
|
@ -142,8 +142,8 @@ static HRESULT WINAPI InternetExplorer_Invoke(IWebBrowser2 *iface, DISPID dispId
|
||||||
static HRESULT WINAPI InternetExplorer_GoBack(IWebBrowser2 *iface)
|
static HRESULT WINAPI InternetExplorer_GoBack(IWebBrowser2 *iface)
|
||||||
{
|
{
|
||||||
InternetExplorer *This = impl_from_IWebBrowser2(iface);
|
InternetExplorer *This = impl_from_IWebBrowser2(iface);
|
||||||
FIXME("(%p)\n", This);
|
TRACE("(%p)\n", This);
|
||||||
return E_NOTIMPL;
|
return go_back(&This->doc_host->doc_host);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI InternetExplorer_GoForward(IWebBrowser2 *iface)
|
static HRESULT WINAPI InternetExplorer_GoForward(IWebBrowser2 *iface)
|
||||||
|
|
Loading…
Reference in a new issue