summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-01 09:57:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-01 13:19:04 +0200
commit664de5a816bdcb68ada087f99ef5a76139890fdf (patch)
tree30dca6260b95bf402930be3eb33766923182b1c1 /connectivity
parentf88160d640b3efe4ffdf8126795a56d25d83944d (diff)
loplugin:stringconstant (clang-cl)
Change-Id: Id1a82cea4444255fdb693e126b7571a406094624 Reviewed-on: https://gerrit.libreoffice.org/79916 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/ado/ADriver.cxx2
-rw-r--r--connectivity/source/drivers/ado/AResultSet.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/ado/ADriver.cxx b/connectivity/source/drivers/ado/ADriver.cxx
index c19df1794285..95ce03ab79cc 100644
--- a/connectivity/source/drivers/ado/ADriver.cxx
+++ b/connectivity/source/drivers/ado/ADriver.cxx
@@ -80,7 +80,7 @@ void ODriver::disposing()
OUString ODriver::getImplementationName_Static( )
{
- return OUString("com.sun.star.comp.sdbc.ado.ODriver");
+ return "com.sun.star.comp.sdbc.ado.ODriver";
}
Sequence< OUString > ODriver::getSupportedServiceNames_Static( )
diff --git a/connectivity/source/drivers/ado/AResultSet.cxx b/connectivity/source/drivers/ado/AResultSet.cxx
index 78e754f9e7ef..dae0f91efb61 100644
--- a/connectivity/source/drivers/ado/AResultSet.cxx
+++ b/connectivity/source/drivers/ado/AResultSet.cxx
@@ -56,7 +56,7 @@ using namespace com::sun::star::sdbc;
// IMPLEMENT_SERVICE_INFO(OResultSet,"com.sun.star.sdbcx.AResultSet","com.sun.star.sdbc.ResultSet");
OUString SAL_CALL OResultSet::getImplementationName( )
{
- return OUString("com.sun.star.sdbcx.ado.ResultSet");
+ return "com.sun.star.sdbcx.ado.ResultSet";
}
css::uno::Sequence< OUString > SAL_CALL OResultSet::getSupportedServiceNames( )