summaryrefslogtreecommitdiff
path: root/stoc/source/corereflection
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-16 17:30:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-16 17:30:34 +0100
commitbc909149fdb3256b80367cd6e55378406ec8d979 (patch)
treebd3da50c305e734d5fd374bdc3640c8e83778334 /stoc/source/corereflection
parent9b03a827b2955edf5dc726d498276c4f94639c8d (diff)
stoc: Use appropriate OUString functions on string constants
Change-Id: If8c20c8a0958016c14007406244fc8ab9a742933
Diffstat (limited to 'stoc/source/corereflection')
-rw-r--r--stoc/source/corereflection/crefl.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/stoc/source/corereflection/crefl.cxx b/stoc/source/corereflection/crefl.cxx
index 87c4e8633f23..23089fb9f7cb 100644
--- a/stoc/source/corereflection/crefl.cxx
+++ b/stoc/source/corereflection/crefl.cxx
@@ -44,13 +44,12 @@ namespace stoc_corefl
static const sal_Int32 CACHE_SIZE = 256;
-#define SERVICENAME "com.sun.star.reflection.CoreReflection"
#define IMPLNAME "com.sun.star.comp.stoc.CoreReflection"
static Sequence< OUString > core_getSupportedServiceNames()
{
Sequence< OUString > seqNames(1);
- seqNames.getArray()[0] = OUString( SERVICENAME );
+ seqNames.getArray()[0] = "com.sun.star.reflection.CoreReflection";
return seqNames;
}