msxml3: Dump set node value.
authorNikolay Sivov <nsivov@codeweavers.com>
Sun, 7 Nov 2010 21:50:38 +0000 (00:50 +0300)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 9 Nov 2010 10:45:04 +0000 (11:45 +0100)
dlls/msxml3/node.c

index f01c00e25129a09a59f9b69b6782b6a875456a45..221abc26b7a451969f82f2901126c21ea9865d47 100644 (file)
@@ -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;