diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-06-30 18:52:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-06-30 23:18:11 +0200 |
commit | 57e8d6837c8bb72bb44930d78b9764789be80124 (patch) | |
tree | 39f86e5d0a923148925df682d77c7752871d91d6 /connectivity/source/drivers/firebird | |
parent | e28faafba4c01991788da39a50615c96c18a16e4 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: connectivity
Change-Id: I959a520f240faab062ecd4f6e2658d9fc9ce709f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97545
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity/source/drivers/firebird')
-rw-r--r-- | connectivity/source/drivers/firebird/Connection.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/drivers/firebird/Driver.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx index b5a3c4ce748a..6e42831f21d5 100644 --- a/connectivity/source/drivers/firebird/Connection.cxx +++ b/connectivity/source/drivers/firebird/Connection.cxx @@ -72,11 +72,11 @@ using namespace ::com::sun::star::uno; * Location within the .odb that an embedded .fdb will be stored. * Only relevant for embedded dbs. */ -static const OUStringLiteral our_sFDBLocation( "firebird.fdb" ); +const OUStringLiteral our_sFDBLocation( "firebird.fdb" ); /** * Older version of LO may store the database in a .fdb file */ -static const OUStringLiteral our_sFBKLocation( "firebird.fbk" ); +const OUStringLiteral our_sFBKLocation( "firebird.fbk" ); Connection::Connection() : Connection_BASE(m_aMutex) diff --git a/connectivity/source/drivers/firebird/Driver.hxx b/connectivity/source/drivers/firebird/Driver.hxx index 8fcf17fa2665..39534c3a1c6d 100644 --- a/connectivity/source/drivers/firebird/Driver.hxx +++ b/connectivity/source/drivers/firebird/Driver.hxx @@ -36,7 +36,7 @@ namespace connectivity // The SQL dialect in use // Has to be used in various isc_* calls. // 3: Is IB6 -- minimum required for delimited identifiers. - static const int FIREBIRD_SQL_DIALECT = 3; + const int FIREBIRD_SQL_DIALECT = 3; /// @throws css::uno::Exception css::uno::Reference< css::uno::XInterface > FirebirdDriver_CreateInstance(const css::uno::Reference< css::lang::XMultiServiceFactory >& _rxFactory); |