summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/attr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/attr.cxx')
-rw-r--r--unoxml/source/dom/attr.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/unoxml/source/dom/attr.cxx b/unoxml/source/dom/attr.cxx
index f835e6dab6de..68c5c82a4e6b 100644
--- a/unoxml/source/dom/attr.cxx
+++ b/unoxml/source/dom/attr.cxx
@@ -238,7 +238,8 @@ namespace DOM
if (m_pNamespace.get()) {
OSL_ASSERT(!m_aNodePtr->parent);
- OUString const ret(OUString::fromUtf8(m_pNamespace->second));
+ OUString const ret(OStringToOUString(
+ m_pNamespace->second, RTL_TEXTENCODING_UTF8));
return ret;
} else {
return CNode::getPrefix();
@@ -254,7 +255,8 @@ namespace DOM
if (m_pNamespace.get()) {
OSL_ASSERT(!m_aNodePtr->parent);
- OUString const ret(OUString::fromUtf8(m_pNamespace->first));
+ OUString const ret(OStringToOUString(
+ m_pNamespace->first, RTL_TEXTENCODING_UTF8));
return ret;
} else {
return CNode::getNamespaceURI();