summaryrefslogtreecommitdiff
path: root/stoc/source/simpleregistry
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-31 17:49:01 +0200
committerNoel Grandin <noel@peralex.com>2013-11-08 14:50:59 +0200
commitcd30747b74683dc5766073a4a9b3a4c0e5db3723 (patch)
treea1833a51a2f501693100bb449e5a4b28f564379e /stoc/source/simpleregistry
parentc3e55a1f3b88fd53d13f563a4116d588643c34d7 (diff)
remove unnecessary use of OUString constructor in STOC module
Change-Id: I980223cedb6d0054ef71cbd81691f70a24f506ad
Diffstat (limited to 'stoc/source/simpleregistry')
-rw-r--r--stoc/source/simpleregistry/simpleregistry.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/simpleregistry/simpleregistry.cxx b/stoc/source/simpleregistry/simpleregistry.cxx
index bd6b308ca240..a3e517c6be94 100644
--- a/stoc/source/simpleregistry/simpleregistry.cxx
+++ b/stoc/source/simpleregistry/simpleregistry.cxx
@@ -1131,7 +1131,7 @@ css::uno::Reference< css::uno::XInterface > SimpleRegistry_CreateInstance(
css::uno::Sequence< OUString > simreg_getSupportedServiceNames() {
css::uno::Sequence< OUString > names(1);
- names[0] = OUString("com.sun.star.registry.SimpleRegistry");
+ names[0] = "com.sun.star.registry.SimpleRegistry";
return names;
}