summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2011-02-10 17:01:57 +0100
committerMichael Stahl <mst@openoffice.org>2011-02-10 17:01:57 +0100
commit1076aee651966c51e96c505632708ee336091432 (patch)
tree9e282be21782c233183d6f965c022b17d2ba3c46 /unoxml
parent9489d562b74af635cd529a2658dca1606f419874 (diff)
xmlfix3: unoxml: argh, doesn't build everywhere...
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/dom/processinginstruction.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/unoxml/source/dom/processinginstruction.cxx b/unoxml/source/dom/processinginstruction.cxx
index 44565738ddf6..b604a3284032 100644
--- a/unoxml/source/dom/processinginstruction.cxx
+++ b/unoxml/source/dom/processinginstruction.cxx
@@ -105,7 +105,8 @@ namespace DOM
throw RuntimeException();
}
- OString const data(OUStringToOString(rData, RTL_TEXTENCODING_UTF8));
+ OString const data(
+ ::rtl::OUStringToOString(rData, RTL_TEXTENCODING_UTF8));
xmlChar const*const pData(
reinterpret_cast<xmlChar const*>(data.getStr()) );
xmlFree(m_aNodePtr->content);