From c24d293661c7049b337ac0763b8d309601c9cce3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 23 Jul 2017 13:51:29 +0200 Subject: loplugin:unnecessaryvirtual Change-Id: Id3f0bbcae731d777ac7c1fbc9f020ff35833864b Reviewed-on: https://gerrit.libreoffice.org/40323 Tested-by: Jenkins Reviewed-by: Noel Grandin --- connectivity/source/drivers/evoab2/NConnection.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'connectivity') 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; -- cgit