summaryrefslogtreecommitdiffstats
path: root/binfilter/bf_sch/source/core/sch_memchrt.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-27 20:30:50 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-28 08:48:20 +0000
commitf563c10b5bb6795974ad32f7912a9f736941daef (patch)
tree8104465dd11aa007bd4750b4d018552edf041147 /binfilter/bf_sch/source/core/sch_memchrt.cxx
parentaStr is unused (diff)
downloadbinfilter-f563c10b5bb6795974ad32f7912a9f736941daef.tar.gz
binfilter-f563c10b5bb6795974ad32f7912a9f736941daef.zip
ByteString->rtl::OUStringToOString
Diffstat (limited to 'binfilter/bf_sch/source/core/sch_memchrt.cxx')
-rw-r--r--binfilter/bf_sch/source/core/sch_memchrt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/binfilter/bf_sch/source/core/sch_memchrt.cxx b/binfilter/bf_sch/source/core/sch_memchrt.cxx
index da43dbb68..e401d2740 100644
--- a/binfilter/bf_sch/source/core/sch_memchrt.cxx
+++ b/binfilter/bf_sch/source/core/sch_memchrt.cxx
@@ -855,9 +855,9 @@ using namespace ::com::sun::star;
/*N*/ nDelimiterPos >= nEndPos )
/*N*/ {
/*N*/ #if OSL_DEBUG_LEVEL > 0
-/*N*/ String aStr( rXMLString.copy( nStartPos, nEndPos - nStartPos + 1 ));
-/*N*/ ByteString aBstr( aStr, RTL_TEXTENCODING_ASCII_US );
-/*N*/ OSL_TRACE( "Invalid Cell Range <%s> found in XML file", aBstr.GetBuffer());
+/*N*/ rtl::OUString aStr( rXMLString.copy( nStartPos, nEndPos - nStartPos + 1 ));
+/*N*/ rtl::OString aBstr(rtl::OUStringToOString(aStr, RTL_TEXTENCODING_ASCII_US));
+/*N*/ OSL_TRACE( "Invalid Cell Range <%s> found in XML file", aBstr.getStr());
/*N*/ #endif
/*N*/ return false;
/*N*/ }