diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-23 13:51:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-23 21:12:41 +0200 |
commit | c24d293661c7049b337ac0763b8d309601c9cce3 (patch) | |
tree | a3020c1f449523b8400b4d0c4ac5dffea88ae9b4 /connectivity | |
parent | 4bb2bca091ffa0cc8a5f4a850eef146bb66feaa0 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Id3f0bbcae731d777ac7c1fbc9f020ff35833864b
Reviewed-on: https://gerrit.libreoffice.org/40323
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/evoab2/NConnection.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/evoab2/NConnection.hxx b/connectivity/source/drivers/evoab2/NConnection.hxx index 43169062f431..7142128b1203 100644 --- a/connectivity/source/drivers/evoab2/NConnection.hxx +++ b/connectivity/source/drivers/evoab2/NConnection.hxx @@ -66,7 +66,7 @@ namespace connectivity public: explicit OEvoabConnection( OEvoabDriver& _rDriver ); /// @throws css::sdbc::SQLException - virtual void construct(const OUString& _rUrl,const css::uno::Sequence< css::beans::PropertyValue >& _rInfo ); + void construct(const OUString& _rUrl,const css::uno::Sequence< css::beans::PropertyValue >& _rInfo ); OString const & getPassword() { return m_aPassword; } void setPassword( OString const & aStr ) { m_aPassword = aStr; } @@ -85,7 +85,7 @@ namespace connectivity DECLARE_SERVICE_INFO(); // XConnection - virtual css::uno::Reference< css::sdbcx::XTablesSupplier > createCatalog(); + css::uno::Reference< css::sdbcx::XTablesSupplier > createCatalog(); virtual css::uno::Reference< css::sdbc::XStatement > SAL_CALL createStatement( ) override; virtual css::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareStatement( const OUString& sql ) override; virtual css::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareCall( const OUString& sql ) override; |