Commit a6594da4 authored by Michael Karcher's avatar Michael Karcher Committed by Alexandre Julliard

msxml3: Quiet noisy fixmes.

The FIXME messages for unknown interfaces should not be emitted for interfaces that should not get implemented. Origin 8 spams you with these messsages.
parent aefe3456
......@@ -69,6 +69,12 @@ static HRESULT WINAPI domcdata_QueryInterface(
{
return IUnknown_QueryInterface(This->node_unk, riid, ppvObject);
}
else if ( IsEqualGUID( riid, &IID_IXMLDOMText ) ||
IsEqualGUID( riid, &IID_IXMLDOMElement ) )
{
TRACE("Unsupported interface\n");
return E_NOINTERFACE;
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
......
......@@ -70,6 +70,13 @@ static HRESULT WINAPI domtext_QueryInterface(
{
return IUnknown_QueryInterface(This->node_unk, riid, ppvObject);
}
else if ( IsEqualGUID( riid, &IID_IXMLDOMElement ) ||
IsEqualGUID( riid, &IID_IXMLDOMCDATASection ) )
{
/* IXMLDOMText is known to be correct in not implementing these */
TRACE("Unsupported interface\n");
return E_NOINTERFACE;
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(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