diff options
Diffstat (limited to 'cppuhelper/source/shlib.cxx')
-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; } |