diff options
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx b/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx index 7f6335c9904f..aaa7244bb674 100644 --- a/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx +++ b/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx @@ -120,7 +120,7 @@ namespace xmlsearch { { if( arrayL_ <= index_ ) throw xmlsearch::excep::XmlSearchException( - rtl::OUString::createFromAscii( "ByteArrayDecompressor->getNextByte()" ) ); + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "ByteArrayDecompressor->getNextByte()" )) ); return array_[index_++] & 0xFF; } |