Commit a1970df5 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed QueryInterface failures on IE7.

parent 8f2ac90a
......@@ -2273,6 +2273,8 @@ static HRESULT QueryInterface(REFIID riid, void **ppv)
*ppv = &OleControlSite;
else if(IsEqualGUID(&IID_IDocHostShowUI, riid))
return E_NOINTERFACE; /* TODO */
else if(IsEqualGUID(&IID_IProxyManager, riid))
return E_NOINTERFACE; /* ? */
else if(IsEqualGUID(&IID_unk1, riid))
return E_NOINTERFACE; /* HTMLWindow2 ? */
else if(IsEqualGUID(&IID_unk2, riid))
......
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