summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-12-08 17:22:45 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-12-08 17:22:45 +0100
commit7085e23bf0410d42da7f6abf2a4a50a0f6ce6441 (patch)
tree27d1179a3f8927e82503bc5af958ea416f369df2 /sdext
parenta4fb4f90ec11664ceb0b0348aa8b01671dd6ac2d (diff)
RTL_CONSTASCII_USTRINGPARAM in extensions 2
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/minimizer/informationdialog.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/minimizer/informationdialog.cxx b/sdext/source/minimizer/informationdialog.cxx
index ee5e688db935..946b90f5298c 100644
--- a/sdext/source/minimizer/informationdialog.cxx
+++ b/sdext/source/minimizer/informationdialog.cxx
@@ -322,8 +322,8 @@ void InformationDialog::InitDialog()
OUString aInfoString( getString( eInfoString ) );
const OUString aOldSizePlaceholder( RTL_CONSTASCII_USTRINGPARAM( "%OLDFILESIZE" ) );
const OUString aNewSizePlaceholder( RTL_CONSTASCII_USTRINGPARAM( "%NEWFILESIZE" ) );
- const OUString aTitlePlaceholder( aTitle.getLength() ? OUString::createFromAscii("%TITLE" )
- : OUString::createFromAscii("'%TITLE'") );
+ const OUString aTitlePlaceholder( aTitle.getLength() ? OUString(RTL_CONSTASCII_USTRINGPARAM("%TITLE" ))
+ : OUString(RTL_CONSTASCII_USTRINGPARAM("'%TITLE'")) );
sal_Int32 i = aInfoString.indexOf( aOldSizePlaceholder, 0 );
if ( i >= 0 )