shdocvw: Added TranslateUrl implementation.

This commit is contained in:
Jacek Caban 2006-01-25 13:15:12 +01:00 committed by Alexandre Julliard
parent 9cbe52b111
commit 53c469f1e8
1 changed files with 8 additions and 2 deletions

View File

@ -352,8 +352,14 @@ static HRESULT WINAPI DocHostUIHandler_TranslateUrl(IDocHostUIHandler2 *iface,
DWORD dwTranslate, OLECHAR *pchURLIn, OLECHAR **ppchURLOut)
{
WebBrowser *This = DOCHOSTUI_THIS(iface);
FIXME("(%p)->(%ld %s %p)\n", This, dwTranslate, debugstr_w(pchURLIn), ppchURLOut);
return E_NOTIMPL;
TRACE("(%p)->(%ld %s %p)\n", This, dwTranslate, debugstr_w(pchURLIn), ppchURLOut);
if(This->hostui)
return IDocHostUIHandler_TranslateUrl(This->hostui, dwTranslate,
pchURLIn, ppchURLOut);
return S_FALSE;
}
static HRESULT WINAPI DocHostUIHandler_FilterDataObject(IDocHostUIHandler2 *iface,