On 2/14/11 10:03 AM, Alistair Leslie-Hughes wrote:
Changelog: mshtml: Ignore IActiveScript interface for IXMLHTTPRequest
mshtml?
+ else if ( IsEqualGUID( riid,&IID_IActiveScript)) + { + TRACE("(%p)->(IID_IActiveScript %p) returning NULL\n", This, ppvObject); + *ppvObject = NULL; + return E_NOINTERFACE; + } else { FIXME("Unsupported interface %s\n", debugstr_guid(riid));
As discussed on wine-devel, please just change the later FIXME to TRACE instead.
Jacek