summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-19 14:16:55 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-19 14:18:10 +0100
commit5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb (patch)
treef891d796fa21c5bfb941eaa4a3f0c05a7e179cc6 /desktop
parentodk: do not pack unused component.map file (diff)
downloadcore-5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb.tar.gz
core-5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb.zip
further OUString cleanup
Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/app.cxx6
-rw-r--r--desktop/source/app/officeipcthread.cxx6
-rw-r--r--desktop/unx/source/officeloader/officeloader.cxx2
3 files changed, 7 insertions, 7 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 3e03a57a8fa4..eeca5a7c3e28 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -2274,11 +2274,11 @@ void Desktop::OpenClients()
if ( lastIndex > 0 )
{
aIniName = aIniName.copy( 0, lastIndex+1 );
- aIniName += OUString( "perftune" );
+ aIniName += "perftune";
#if defined(WNT)
- aIniName += OUString( ".ini" );
+ aIniName += ".ini";
#else
- aIniName += OUString( "rc" );
+ aIniName += "rc";
#endif
}
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx
index c416cccaebb4..af4499052195 100644
--- a/desktop/source/app/officeipcthread.cxx
+++ b/desktop/source/app/officeipcthread.cxx
@@ -486,11 +486,11 @@ OfficeIPCThread::Status OfficeIPCThread::EnableOfficeIPCThread()
if ( lastIndex > 0 )
{
aIniName = aIniName.copy( 0, lastIndex+1 );
- aIniName += OUString( "perftune" );
+ aIniName += "perftune";
#if defined(WNT)
- aIniName += OUString( ".ini" );
+ aIniName += ".ini";
#else
- aIniName += OUString( "rc" );
+ aIniName += "rc";
#endif
}
diff --git a/desktop/unx/source/officeloader/officeloader.cxx b/desktop/unx/source/officeloader/officeloader.cxx
index ba8eb064dc06..2c24a120e40d 100644
--- a/desktop/unx/source/officeloader/officeloader.cxx
+++ b/desktop/unx/source/officeloader/officeloader.cxx
@@ -37,7 +37,7 @@ SAL_IMPLEMENT_MAIN()
osl_getExecutableFile( &sExecutableFile.pData );
- sExecutableFile += OUString(".bin");
+ sExecutableFile += ".bin";
nCommandArgs = osl_getCommandArgCount();
pCommandArgs = new rtl_uString *[nCommandArgs];