summaryrefslogtreecommitdiffstats
path: root/sfx2/source/appl/shutdowniconw32.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-08 04:51:28 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-08 04:51:28 +0100
commit8035a3af260729ee47a1d805811e17d06d035e3d (patch)
treee3040a30673497421525ea639add7f7b31a55a65 /sfx2/source/appl/shutdowniconw32.cxx
parentfwk: some follow up of rtl cleanup (diff)
downloadcore-8035a3af260729ee47a1d805811e17d06d035e3d.tar.gz
core-8035a3af260729ee47a1d805811e17d06d035e3d.zip
some further OUString cleanup
Change-Id: I13eb94092e29ececc9fbf494074acde5f893b605
Diffstat (limited to 'sfx2/source/appl/shutdowniconw32.cxx')
-rw-r--r--sfx2/source/appl/shutdowniconw32.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/shutdowniconw32.cxx b/sfx2/source/appl/shutdowniconw32.cxx
index dbef7e11233a..3220bb5c4a86 100644
--- a/sfx2/source/appl/shutdowniconw32.cxx
+++ b/sfx2/source/appl/shutdowniconw32.cxx
@@ -829,7 +829,7 @@ bool ShutdownIcon::IsQuickstarterInstalled()
aOfficepath = aOfficepath.copy(0, i);
OUString quickstartExe(aOfficepath);
- quickstartExe += OUString( "\\quickstart.exe" );
+ quickstartExe += "\\quickstart.exe";
return FileExistsW( reinterpret_cast<LPCWSTR>(quickstartExe.getStr()) );
}
@@ -845,7 +845,7 @@ void ShutdownIcon::EnableAutostartW32( const rtl::OUString &aShortcut )
aOfficepath = aOfficepath.copy(0, i);
OUString quickstartExe(aOfficepath);
- quickstartExe += OUString( "\\quickstart.exe" );
+ quickstartExe += "\\quickstart.exe";
CreateShortcut( quickstartExe, aOfficepath, aShortcut, OUString(), OUString() );
}