Actually print the IIDs.

This commit is contained in:
Huw Davies 2005-10-31 21:04:31 +00:00 committed by Alexandre Julliard
parent 063824dd22
commit 82aa918a30
5 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ static HRESULT WINAPI domdoc_QueryInterface( IXMLDOMDocument *iface, REFIID riid
{
domdoc *This = impl_from_IXMLDOMDocument( iface );
TRACE("%p %p %p\n", This, debugstr_guid( riid ), ppvObject );
TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
if ( IsEqualGUID( riid, &IID_IXMLDOMDocument ) ||
IsEqualGUID( riid, &IID_IXMLDOMNode ) ||

View File

@ -62,7 +62,7 @@ static HRESULT WINAPI domelem_QueryInterface(
REFIID riid,
void** ppvObject )
{
TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
if ( IsEqualGUID( riid, &IID_IXMLDOMElement ) ||
IsEqualGUID( riid, &IID_IUnknown ) ||

View File

@ -73,7 +73,7 @@ static HRESULT WINAPI xmlnode_QueryInterface(
REFIID riid,
void** ppvObject )
{
TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
if ( IsEqualGUID( riid, &IID_IUnknown ) ||
IsEqualGUID( riid, &IID_IDispatch ) ||

View File

@ -162,7 +162,7 @@ static HRESULT WINAPI xmlnodelist_QueryInterface(
REFIID riid,
void** ppvObject )
{
TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
if ( IsEqualGUID( riid, &IID_IUnknown ) ||
IsEqualGUID( riid, &IID_IDispatch ) ||

View File

@ -57,7 +57,7 @@ static HRESULT WINAPI xmlnodemap_QueryInterface(
IXMLDOMNamedNodeMap *iface,
REFIID riid, void** ppvObject )
{
TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
if( IsEqualGUID( riid, &IID_IXMLDOMElement ) ||
IsEqualGUID( riid, &IID_IUnknown ) ||