summaryrefslogtreecommitdiff
path: root/shell/source/unix
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-31 17:51:16 +0200
committerNoel Grandin <noel@peralex.com>2013-11-08 14:50:59 +0200
commitda20c7f4396b127072074f4d7999ed29deee02f0 (patch)
tree4d7b90d7731fc1f37ff8fa3b21d59cecc216236b /shell/source/unix
parentcd30747b74683dc5766073a4a9b3a4c0e5db3723 (diff)
remove unnecessary use of OUString constructor in SHELL module
Change-Id: Ibdb750dc8e0f4cd0f186d5801c0a269edd939547
Diffstat (limited to 'shell/source/unix')
-rw-r--r--shell/source/unix/exec/shellexec.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/unix/exec/shellexec.cxx b/shell/source/unix/exec/shellexec.cxx
index b3138677e09e..777affc56333 100644
--- a/shell/source/unix/exec/shellexec.cxx
+++ b/shell/source/unix/exec/shellexec.cxx
@@ -66,7 +66,7 @@ namespace // private
Sequence< OUString > SAL_CALL ShellExec_getSupportedServiceNames()
{
Sequence< OUString > aRet(1);
- aRet[0] = OUString("com.sun.star.sys.shell.SystemShellExecute");
+ aRet[0] = "com.sun.star.sys.shell.SystemShellExecute";
return aRet;
}
}