shdocvw: Added WebBrowser::Navigate implementation.

This commit is contained in:
Jacek Caban 2006-10-19 23:15:53 +02:00 committed by Alexandre Julliard
parent 4bcf1f554c
commit 13c886d9fc
1 changed files with 4 additions and 2 deletions

View File

@ -150,9 +150,11 @@ static HRESULT WINAPI InternetExplorer_Navigate(IWebBrowser2 *iface, BSTR szUrl,
VARIANT *PostData, VARIANT *Headers)
{
InternetExplorer *This = WEBBROWSER_THIS(iface);
FIXME("(%p)->(%s %p %p %p %p)\n", This, debugstr_w(szUrl), Flags, TargetFrameName,
TRACE("(%p)->(%s %p %p %p %p)\n", This, debugstr_w(szUrl), Flags, TargetFrameName,
PostData, Headers);
return E_NOTIMPL;
return navigate_url(&This->doc_host, szUrl, Flags, TargetFrameName, PostData, Headers);
}
static HRESULT WINAPI InternetExplorer_Refresh(IWebBrowser2 *iface)