From 1076aee651966c51e96c505632708ee336091432 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 10 Feb 2011 17:01:57 +0100 Subject: xmlfix3: unoxml: argh, doesn't build everywhere... --- unoxml/source/dom/processinginstruction.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(data.getStr()) ); xmlFree(m_aNodePtr->content); -- cgit