Commit 13c886d9 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Added WebBrowser::Navigate implementation.

parent 4bcf1f55
...@@ -150,9 +150,11 @@ static HRESULT WINAPI InternetExplorer_Navigate(IWebBrowser2 *iface, BSTR szUrl, ...@@ -150,9 +150,11 @@ static HRESULT WINAPI InternetExplorer_Navigate(IWebBrowser2 *iface, BSTR szUrl,
VARIANT *PostData, VARIANT *Headers) VARIANT *PostData, VARIANT *Headers)
{ {
InternetExplorer *This = WEBBROWSER_THIS(iface); 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); PostData, Headers);
return E_NOTIMPL;
return navigate_url(&This->doc_host, szUrl, Flags, TargetFrameName, PostData, Headers);
} }
static HRESULT WINAPI InternetExplorer_Refresh(IWebBrowser2 *iface) static HRESULT WINAPI InternetExplorer_Refresh(IWebBrowser2 *iface)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment