summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-27 17:42:39 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-27 17:42:39 +0100
commitc9b2872d56d498b68e5fc71a1a2d910f2a04a7f6 (patch)
treedaaa5e33b34bae507f0802322bf6759f66537fc4 /hwpfilter
parent93a23f29a783b2dfeb08af81d501baafe16af1fb (diff)
RTL_CONSTASCII_USTRINGPARAM in filters 11 (build problem in sal ?)
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 c296ed792cfa..0c9c574e554d 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(RTL_CONSTASCII_USTRINGPARAM("Local"));
- aArgs[1] <<= OUString(RTL_CONSTASCII_USTRINGPARAM("Office"));
+ aArgs[0] <<= OUString::createFromAscii( "Local" );
+ aArgs[1] <<= OUString::createFromAscii( "Office" );
Reference< XInterface > xUCB
( xFact->createInstanceWithArguments
- (OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.ucb.UniversalContentBroker")),
+ (OUString::createFromAscii("com.sun.star.ucb.UniversalContentBroker"),
aArgs));
p->setUCB( xUCB );