diff options
author | Michael Stahl <mst@openoffice.org> | 2011-02-10 17:01:57 +0100 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2011-02-10 17:01:57 +0100 |
commit | 1076aee651966c51e96c505632708ee336091432 (patch) | |
tree | 9e282be21782c233183d6f965c022b17d2ba3c46 | |
parent | 9489d562b74af635cd529a2658dca1606f419874 (diff) |
xmlfix3: unoxml: argh, doesn't build everywhere...
-rw-r--r-- | unoxml/source/dom/processinginstruction.cxx | 3 |
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); |