diff options
author | Michael Stahl <mst@openoffice.org> | 2011-02-14 15:55:02 +0100 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2011-02-14 15:55:02 +0100 |
commit | 8d5761ee49e21bb3e51cbc271b457bd25c411cd8 (patch) | |
tree | a92f855e90602d288bb808f1225093cd37e28ae8 /unoxml | |
parent | 701e38bf43ed8efe3998b131160d988b5fd63812 (diff) |
xmlfix3: why the heck does this build with g++?
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/source/dom/document.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unoxml/source/dom/document.cxx b/unoxml/source/dom/document.cxx index f08ee36178ca..14d72555157a 100644 --- a/unoxml/source/dom/document.cxx +++ b/unoxml/source/dom/document.cxx @@ -489,7 +489,8 @@ namespace DOM { ::osl::MutexGuard const g(m_Mutex); - OString const oData(OUStringToOString(data, RTL_TEXTENCODING_UTF8)); + OString const oData( + ::rtl::OUStringToOString(data, RTL_TEXTENCODING_UTF8)); xmlChar const*const pData = reinterpret_cast<xmlChar const*>(oData.getStr()); xmlNodePtr const pText = |