wine/dlls/msxml3 nodemap.c nodelist.c node.c e ...

Alexandre Julliard julliard at wine.codeweavers.com
Mon Oct 31 15:04:32 CST 2005


ChangeSet ID:	21005
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at winehq.org	2005/10/31 15:04:31

Modified files:
	dlls/msxml3    : nodemap.c nodelist.c node.c element.c domdoc.c 

Log message:
	Huw Davies <huw at codeweavers.com>
	Actually print the IIDs.

Patch: http://cvs.winehq.org/patch.py?id=21005

Old revision  New revision  Changes     Path
 1.5           1.6           +1 -1       wine/dlls/msxml3/nodemap.c
 1.2           1.3           +1 -1       wine/dlls/msxml3/nodelist.c
 1.8           1.9           +1 -1       wine/dlls/msxml3/node.c
 1.8           1.9           +1 -1       wine/dlls/msxml3/element.c
 1.14          1.15          +1 -1       wine/dlls/msxml3/domdoc.c

Index: wine/dlls/msxml3/nodemap.c
diff -u -p wine/dlls/msxml3/nodemap.c:1.5 wine/dlls/msxml3/nodemap.c:1.6
--- wine/dlls/msxml3/nodemap.c	31 Oct 2005 21: 4:31 -0000
+++ /dev/null	31 Oct 2005 21: 4:31 -0000
@@ -57,7 +57,7 @@ static HRESULT WINAPI xmlnodemap_QueryIn
     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 ) ||
Index: wine/dlls/msxml3/nodelist.c
diff -u -p wine/dlls/msxml3/nodelist.c:1.2 wine/dlls/msxml3/nodelist.c:1.3
--- wine/dlls/msxml3/nodelist.c	31 Oct 2005 21: 4:31 -0000
+++ /dev/null	31 Oct 2005 21: 4:31 -0000
@@ -162,7 +162,7 @@ static HRESULT WINAPI xmlnodelist_QueryI
     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 ) ||
Index: wine/dlls/msxml3/node.c
diff -u -p wine/dlls/msxml3/node.c:1.8 wine/dlls/msxml3/node.c:1.9
--- wine/dlls/msxml3/node.c	31 Oct 2005 21: 4:31 -0000
+++ /dev/null	31 Oct 2005 21: 4:31 -0000
@@ -73,7 +73,7 @@ static HRESULT WINAPI xmlnode_QueryInter
     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 ) ||
Index: wine/dlls/msxml3/element.c
diff -u -p wine/dlls/msxml3/element.c:1.8 wine/dlls/msxml3/element.c:1.9
--- wine/dlls/msxml3/element.c	31 Oct 2005 21: 4:31 -0000
+++ /dev/null	31 Oct 2005 21: 4:31 -0000
@@ -62,7 +62,7 @@ static HRESULT WINAPI domelem_QueryInter
     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 ) ||
Index: wine/dlls/msxml3/domdoc.c
diff -u -p wine/dlls/msxml3/domdoc.c:1.14 wine/dlls/msxml3/domdoc.c:1.15
--- wine/dlls/msxml3/domdoc.c	31 Oct 2005 21: 4:31 -0000
+++ /dev/null	31 Oct 2005 21: 4:31 -0000
@@ -62,7 +62,7 @@ static HRESULT WINAPI domdoc_QueryInterf
 {
     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 ) ||



More information about the wine-cvs mailing list