diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:57:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 13:00:14 +0200 |
commit | d4ef035e2d08ad91e6fccd58590abdff0d6260c7 (patch) | |
tree | a61cae7702941b7e7260acba634007323c7e49c1 /include | |
parent | c64e9ee263cf9150f12b45906ae21a553af06d9c (diff) |
Improved loplugin:stringconstant (now that GCC 7 supports it): connectivity
Change-Id: I80dab66757b1f541d448a642a5ecddc876f55c7b
Reviewed-on: https://gerrit.libreoffice.org/76689
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/connectivity/CommonTools.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connectivity/CommonTools.hxx b/include/connectivity/CommonTools.hxx index f9cd35155dd2..a515a3b65fed 100644 --- a/include/connectivity/CommonTools.hxx +++ b/include/connectivity/CommonTools.hxx @@ -154,7 +154,7 @@ namespace connectivity #define IMPLEMENT_SERVICE_INFO(classname, implasciiname, serviceasciiname) \ OUString SAL_CALL classname::getImplementationName( ) \ { \ - return OUString(implasciiname); \ + return implasciiname; \ } \ css::uno::Sequence< OUString > SAL_CALL classname::getSupportedServiceNames( ) \ { \ |