diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
commit | e50ef195bc95f3f410119f623928382cb88b45d2 (patch) | |
tree | 0897c005806c84d7e2add9f4a2d407ff4fe911a5 /cppuhelper | |
parent | 363e39d63621b6c7017854ca5bb2f7668bb35846 (diff) |
New loplugin:stringconcat
Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/shlib.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index baa9428f8e00..c150364d5a0a 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -239,9 +239,9 @@ void cppuhelper::detail::loadSharedLibComponentFactory( if (constructor.isEmpty()) { rtl::OUString sym; if (prefix == "direct") { - sym = implementation.replace('.', '_') + "_" + COMPONENT_GETFACTORY; + sym = implementation.replace('.', '_') + "_" COMPONENT_GETFACTORY; } else if (!prefix.isEmpty()) { - sym = prefix + "_" + COMPONENT_GETFACTORY; + sym = prefix + "_" COMPONENT_GETFACTORY; } else { sym = COMPONENT_GETFACTORY; } |