summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-16 17:28:43 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-16 17:28:43 +0100
commite7d6a1d238b16d1e9de0308a9c9ad35e6d30bcee (patch)
tree4cf4891434870efb8a33d9d0597ca456230c7bfd /io
parent500910feff50c07ae8335c8fcb0564936bb175a9 (diff)
io: Use appropriate OUString functions on string constants
Change-Id: Ib05e759a1223d71e738940f6f9298ac593d94a27
Diffstat (limited to 'io')
-rw-r--r--io/source/stm/opipe.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/io/source/stm/opipe.cxx b/io/source/stm/opipe.cxx
index d40f55dc4410..8f4f952b8281 100644
--- a/io/source/stm/opipe.cxx
+++ b/io/source/stm/opipe.cxx
@@ -47,7 +47,6 @@ using namespace ::com::sun::star::lang;
// Implementation and service names
#define IMPLEMENTATION_NAME "com.sun.star.comp.io.stm.Pipe"
-#define SERVICE_NAME "com.sun.star.io.Pipe"
namespace io_stm{
@@ -447,7 +446,7 @@ OUString OPipeImpl_getImplementationName()
Sequence<OUString> OPipeImpl_getSupportedServiceNames(void)
{
Sequence<OUString> aRet(1);
- aRet.getArray()[0] = OUString( SERVICE_NAME );
+ aRet.getArray()[0] = "com.sun.star.io.Pipe";
return aRet;
}
}