summaryrefslogtreecommitdiff
path: root/svl/source/uno
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-31 17:43:07 +0200
committerNoel Grandin <noel@peralex.com>2013-11-08 08:44:34 +0200
commit458ff29ac36b4a99b14fab99ddc14090cbbfb199 (patch)
treec7f14785840b045359a19ccc3a3571c5bfb3f9fa /svl/source/uno
parent81f5c65f7556bf0c08ce8a0d7029a9cc72319025 (diff)
remove unnecessary use of OUString constructor in SVL module
Change-Id: Ib3c2f2b43895fe45e9efff888bbd81d8be5969e4
Diffstat (limited to 'svl/source/uno')
-rw-r--r--svl/source/uno/pathservice.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/uno/pathservice.cxx b/svl/source/uno/pathservice.cxx
index 012d2baec6d8..07b57a1257b5 100644
--- a/svl/source/uno/pathservice.cxx
+++ b/svl/source/uno/pathservice.cxx
@@ -53,7 +53,7 @@ public:
throw(css::uno::RuntimeException)
{
css::uno::Sequence< OUString > aRet(1);
- aRet.getArray()[0] = OUString("com.sun.star.config.SpecialConfigManager");
+ aRet.getArray()[0] = "com.sun.star.config.SpecialConfigManager";
return aRet;
}