summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2010-12-15 07:50:23 +0100
committerDavid Tardon <dtardon@redhat.com>2010-12-15 07:50:23 +0100
commitcd27e2a5108e0e9acf24758424e654e06f35dbaa (patch)
tree2d58007928e4b680d208fae2038ccb580bef627f /xmlhelp
parent3735fc8d810a0b0f9494f0cd392d1278e3c59de7 (diff)
RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx2
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 de29a77c91..8e0e41c9c6 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;
}