summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-12-13 10:54:12 +0200
committerNoel Grandin <noel@peralex.com>2013-12-17 11:49:04 +0200
commit909b27df488f3c84ab8e5be9a7513a83b7c4b0c1 (patch)
tree2d17bbce7f9fa40fca140696648ec136a12f63d1 /desktop
parentRemove unnecessary use of OUString constructor in + expressions (diff)
downloadcore-909b27df488f3c84ab8e5be9a7513a83b7c4b0c1.tar.gz
core-909b27df488f3c84ab8e5be9a7513a83b7c4b0c1.zip
remove unnecessary double calls to OUString constructor
Change-Id: Ib2690e3ec9987b97363687b61fe8ddae4ace9058
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/appinit.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/appinit.cxx b/desktop/source/app/appinit.cxx
index 1d6c9f562d18..cec9b910721a 100644
--- a/desktop/source/app/appinit.cxx
+++ b/desktop/source/app/appinit.cxx
@@ -107,7 +107,7 @@ void Desktop::InitApplicationServiceManager()
SAL_INFO( "desktop.app", "desktop (cd100003) ::createApplicationServiceManager" );
Reference<XMultiServiceFactory> sm;
#ifdef ANDROID
- OUString aUnoRc( OUString( "file:///assets/program/unorc" ) );
+ OUString aUnoRc( "file:///assets/program/unorc" );
sm.set(
cppu::defaultBootstrap_InitialComponentContext( aUnoRc )->getServiceManager(),
UNO_QUERY_THROW);