diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:53:35 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:55:32 +0200 |
commit | 884a4caa4aac9678e3815360edbdd1c813c22b09 (patch) | |
tree | 962c74a5b39745c675693a1f6788c7e3728bcdcb /javaunohelper | |
parent | 9e7c54eb33e18b717783b67f8c1f62fa9a591d8b (diff) |
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: I3561a665cffbdf063c5a8de1225f4ddefd71718f
Diffstat (limited to 'javaunohelper')
-rw-r--r-- | javaunohelper/source/javaunohelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javaunohelper/source/javaunohelper.cxx b/javaunohelper/source/javaunohelper.cxx index d91a081781c1..86e0cd0ea496 100644 --- a/javaunohelper/source/javaunohelper.cxx +++ b/javaunohelper/source/javaunohelper.cxx @@ -153,7 +153,7 @@ jobject Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1getFactory( fprintf(stderr, "Hmm, %s called for %s\n", __PRETTY_FUNCTION__, OUStringToOString(aLibName, osl_getThreadTextEncoding()).getStr()); #endif - aLibName += OUString( SAL_DLLEXTENSION ); + aLibName += SAL_DLLEXTENSION; jobject joSLL_cpp = 0; |