diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2014-11-05 20:21:35 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2014-11-06 16:55:09 +0100 |
commit | 0d349a49871301506c3a714c95bbe309bbd7eb1d (patch) | |
tree | 2642bc3cdab69f93c4ec13d0cc4104665bec4ddb | |
parent | 53eeff46cd98e1fb497023f4fe30e9421c189127 (diff) |
make parseDump() properly handle xml node content
Change-Id: Ibb8859908c8e73377e1ee20b041b9ae76955d076
-rw-r--r-- | sw/qa/extras/inc/swmodeltestbase.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/inc/swmodeltestbase.hxx b/sw/qa/extras/inc/swmodeltestbase.hxx index f4c6841f80e8..dd6a481f0666 100644 --- a/sw/qa/extras/inc/swmodeltestbase.hxx +++ b/sw/qa/extras/inc/swmodeltestbase.hxx @@ -430,7 +430,7 @@ protected: if (aAttribute.getLength()) aRet = OUString::createFromAscii((const char*)xmlGetProp(pXmlNode, BAD_CAST(aAttribute.getStr()))); else - aRet = OUString::createFromAscii((const char*)XML_GET_CONTENT(pXmlNode)); + aRet = OUString::createFromAscii((const char*)xmlNodeGetContent(pXmlNode)); xmlFreeDoc(pXmlDoc); |