summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-27 10:39:04 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-27 10:39:04 +0100
commit75afe4e1489acb6ea00a7b59f029c3335af35915 (patch)
tree64a4ff789a680f95050de9c5f30eb940ee95d5fc /hwpfilter
parent763fe4b613c17712f2ff6a3d1920eab6b015be61 (diff)
RTL_CONSTASCII_USTRINGPARAM in filters 7
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 );