Commit 9176c9e8 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msxml3: Downgrade FIXME to TRACE for unsupported interfaces.

parent 49d69e44
......@@ -76,7 +76,7 @@ static HRESULT WINAPI domattr_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -76,7 +76,7 @@ static HRESULT WINAPI domcdata_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -76,7 +76,7 @@ static HRESULT WINAPI domcomment_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -75,7 +75,7 @@ static HRESULT WINAPI domfrag_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -77,7 +77,7 @@ static HRESULT WINAPI domdoctype_QueryInterface(
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
TRACE("interface %s not implemented\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -916,14 +916,9 @@ static HRESULT WINAPI domdoc_QueryInterface( IXMLDOMDocument3 *iface, REFIID rii
{
*ppvObject = &This->lpVtblConnectionPointContainer;
}
else if(IsEqualGUID(&IID_IRunnableObject, riid))
{
TRACE("IID_IRunnableObject not supported returning NULL\n");
return E_NOINTERFACE;
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
TRACE("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
......
......@@ -69,7 +69,7 @@ static HRESULT WINAPI dimimpl_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -85,7 +85,7 @@ static HRESULT WINAPI domelem_QueryInterface(
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
TRACE("interface %s not implemented\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -75,7 +75,7 @@ static HRESULT WINAPI entityref_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -79,7 +79,7 @@ static HRESULT WINAPI xmlnodelist_QueryInterface(
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
TRACE("interface %s not implemented\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -82,7 +82,7 @@ static HRESULT WINAPI xmlnodemap_QueryInterface(
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
TRACE("interface %s not implemented\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -75,7 +75,7 @@ static HRESULT WINAPI dom_pi_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -97,7 +97,7 @@ static HRESULT WINAPI domselection_QueryInterface(
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
TRACE("interface %s not implemented\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -77,7 +77,7 @@ static HRESULT WINAPI domtext_QueryInterface(
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
TRACE("Unsupported interface %s\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
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