diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-31 10:51:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-31 12:09:24 +0200 |
commit | b1a1baa66a8eb0553df87769d48e3cc7e533a1d8 (patch) | |
tree | fe77a0f819887add2fbe03d4cc7a5b9d88cc104e /connectivity | |
parent | 4732e65646016087d772adb3a0b55c166b35356d (diff) |
loplugin:constparams in formula,xmlhelp
Change-Id: I1c987d991a5b292df327d1bb921099233b5531fe
Reviewed-on: https://gerrit.libreoffice.org/40584
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/Catalog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/firebird/Catalog.cxx b/connectivity/source/drivers/firebird/Catalog.cxx index 613b6d2e9702..02883c88c5c0 100644 --- a/connectivity/source/drivers/firebird/Catalog.cxx +++ b/connectivity/source/drivers/firebird/Catalog.cxx @@ -67,7 +67,7 @@ void Catalog::refreshGroups() //----- IRefreshableUsers ---------------------------------------------------- void Catalog::refreshUsers() { - OUString sSql("SELECT DISTINCT RDB$USER FROM RDB$USER_PRIVILEGES"); + OUString const sSql("SELECT DISTINCT RDB$USER FROM RDB$USER_PRIVILEGES"); uno::Reference< XResultSet > xUsers = m_xMetaData->getConnection() ->createStatement()->executeQuery(sSql); |