summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-28 20:19:16 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-28 20:19:16 +0100
commit0a2c5d8be598b169a7e98366e0c5ac02c31e2ccb (patch)
treec9259d06b12a13b8bf7aa21d0e62f11f7b1e9ed6 /hwpfilter
parent3f8861ce64ba6b43b7871c0a365a145bfa1bbf08 (diff)
RTL_CONSTASCII_USTRINGPARAM in filters 13
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hwpreader.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/hwpfilter/source/hwpreader.hxx b/hwpfilter/source/hwpreader.hxx
index 0c9c574e554d..c296ed792cfa 100644
--- a/hwpfilter/source/hwpreader.hxx
+++ b/hwpfilter/source/hwpreader.hxx
@@ -259,11 +259,11 @@ HwpImportFilter::HwpImportFilter( const Reference< XMultiServiceFactory > xFact
p->setDocumentHandler( xHandler );
Sequence< Any > aArgs( 2 );
- aArgs[0] <<= OUString::createFromAscii( "Local" );
- aArgs[1] <<= OUString::createFromAscii( "Office" );
+ aArgs[0] <<= OUString(RTL_CONSTASCII_USTRINGPARAM("Local"));
+ aArgs[1] <<= OUString(RTL_CONSTASCII_USTRINGPARAM("Office"));
Reference< XInterface > xUCB
( xFact->createInstanceWithArguments
- (OUString::createFromAscii("com.sun.star.ucb.UniversalContentBroker"),
+ (OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.ucb.UniversalContentBroker")),
aArgs));
p->setUCB( xUCB );