Kaydet (Commit) 0d349a49 authored tarafından Luboš Luňák's avatar Luboš Luňák

make parseDump() properly handle xml node content

Change-Id: Ibb8859908c8e73377e1ee20b041b9ae76955d076
üst 53eeff46
...@@ -430,7 +430,7 @@ protected: ...@@ -430,7 +430,7 @@ protected:
if (aAttribute.getLength()) if (aAttribute.getLength())
aRet = OUString::createFromAscii((const char*)xmlGetProp(pXmlNode, BAD_CAST(aAttribute.getStr()))); aRet = OUString::createFromAscii((const char*)xmlGetProp(pXmlNode, BAD_CAST(aAttribute.getStr())));
else else
aRet = OUString::createFromAscii((const char*)XML_GET_CONTENT(pXmlNode)); aRet = OUString::createFromAscii((const char*)xmlNodeGetContent(pXmlNode));
xmlFreeDoc(pXmlDoc); xmlFreeDoc(pXmlDoc);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment