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
commitbdf4f2f0d062c9f8db4fc8881c86d52a5a99cd17 (patch)
treeba28901855f798e066042a5284cafcefe26f89af /xmlhelp
parentc058db95aeb9b62b1c1e1696d488a918b427247e (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 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;
}