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 /connectivity/source/sdbcx/VKey.cxx | |
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 'connectivity/source/sdbcx/VKey.cxx')
-rw-r--r-- | connectivity/source/sdbcx/VKey.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/sdbcx/VKey.cxx b/connectivity/source/sdbcx/VKey.cxx index 5a7bc636f7b0..f8ef22d52728 100644 --- a/connectivity/source/sdbcx/VKey.cxx +++ b/connectivity/source/sdbcx/VKey.cxx @@ -40,8 +40,8 @@ using namespace ::com::sun::star::lang; OUString SAL_CALL OKey::getImplementationName( ) { if(isNew()) - return OUString("com.sun.star.sdbcx.VKeyDescriptor"); - return OUString("com.sun.star.sdbcx.VKey"); + return "com.sun.star.sdbcx.VKeyDescriptor"; + return "com.sun.star.sdbcx.VKey"; } css::uno::Sequence< OUString > SAL_CALL OKey::getSupportedServiceNames( ) |