Nikolay Sivov : msxml3: Dump set node value.

Alexandre Julliard julliard at winehq.org
Tue Nov 9 13:13:21 CST 2010


Module: wine
Branch: master
Commit: 84aba12a28511013aaaa520e841a49a55c04e91b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=84aba12a28511013aaaa520e841a49a55c04e91b

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Mon Nov  8 00:50:38 2010 +0300

msxml3: Dump set node value.

---

 dlls/msxml3/node.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index f01c00e..221abc2 100644
--- a/dlls/msxml3/node.c
+++ b/dlls/msxml3/node.c
@@ -142,6 +142,7 @@ HRESULT node_set_content(xmlnode *This, LPCWSTR value)
 {
     xmlChar *str;
 
+    TRACE("(%p)->(%s)\n", This, debugstr_w(value));
     str = xmlChar_from_wchar(value);
     if(!str)
         return E_OUTOFMEMORY;
@@ -155,6 +156,7 @@ static HRESULT node_set_content_escaped(xmlnode *This, LPCWSTR value)
 {
     xmlChar *str, *escaped;
 
+    TRACE("(%p)->(%s)\n", This, debugstr_w(value));
     str = xmlChar_from_wchar(value);
     if(!str)
         return E_OUTOFMEMORY;




More information about the wine-cvs mailing list