From: Nikolay Sivov Date: Sun, 7 Nov 2010 21:50:38 +0000 (+0300) Subject: msxml3: Dump set node value. X-Git-Tag: 1.3.6-alt1.5~1^2^2~23 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=84aba12a28511013aaaa520e841a49a55c04e91b;p=wine%2Feterwine.git msxml3: Dump set node value. --- diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index f01c00e251..221abc26b7 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;