shdocvw: Silence invalid QueryInterface FIXME.

This commit is contained in:
Alistair Leslie-Hughes 2008-11-25 21:23:56 +11:00 committed by Alexandre Julliard
parent ee1f1bfb3f
commit 3c88a2f060
1 changed files with 3 additions and 0 deletions

View File

@ -120,6 +120,9 @@ static HRESULT WINAPI WebBrowser_QueryInterface(IWebBrowser2 *iface, REFIID riid
}else if(IsEqualGUID(&IID_IObjectWithSite, riid)) {
TRACE("(%p)->(IID_IObjectWithSite %p) returning NULL\n", This, ppv);
return E_NOINTERFACE;
}else if(IsEqualGUID(&IID_IViewObjectEx, riid)) {
TRACE("(%p)->(IID_IViewObjectEx %p) returning NULL\n", This, ppv);
return E_NOINTERFACE;
}
if(*ppv) {