From 058abc7cfed47b6f7a235df16080ebb5197c8cc5 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 17 Oct 2016 08:56:14 +0200 Subject: loplugin:unnecessaryoverride Change-Id: Id90a0a3334f4551b926a240b2e06a34337188c07 --- connectivity/source/inc/ado/AColumn.hxx | 2 -- connectivity/source/inc/ado/AGroup.hxx | 2 -- connectivity/source/inc/ado/AIndex.hxx | 2 -- connectivity/source/inc/ado/AKey.hxx | 2 -- connectivity/source/inc/ado/ATable.hxx | 2 -- connectivity/source/inc/ado/AUser.hxx | 3 --- connectivity/source/inc/ado/AView.hxx | 2 -- 7 files changed, 15 deletions(-) (limited to 'connectivity/source/inc/ado') diff --git a/connectivity/source/inc/ado/AColumn.hxx b/connectivity/source/inc/ado/AColumn.hxx index 969eed384fdf..6dda866cc052 100644 --- a/connectivity/source/inc/ado/AColumn.hxx +++ b/connectivity/source/inc/ado/AColumn.hxx @@ -48,8 +48,6 @@ namespace connectivity OAdoColumn(bool _bCase,OConnection* _pConnection); // ODescriptor virtual void construct() override; - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; // css::lang::XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException) override; static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId(); diff --git a/connectivity/source/inc/ado/AGroup.hxx b/connectivity/source/inc/ado/AGroup.hxx index fe1df7e2ef11..2d3655f8556c 100644 --- a/connectivity/source/inc/ado/AGroup.hxx +++ b/connectivity/source/inc/ado/AGroup.hxx @@ -48,8 +48,6 @@ namespace connectivity OAdoGroup(OCatalog* _pParent,bool _bCase, ADOGroup* _pGroup=nullptr); OAdoGroup(OCatalog* _pParent,bool _bCase, const OUString& Name); - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; // css::lang::XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException) override; static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId(); diff --git a/connectivity/source/inc/ado/AIndex.hxx b/connectivity/source/inc/ado/AIndex.hxx index c8060b1a506e..f01f92bc94d1 100644 --- a/connectivity/source/inc/ado/AIndex.hxx +++ b/connectivity/source/inc/ado/AIndex.hxx @@ -39,8 +39,6 @@ namespace connectivity public: virtual void refreshColumns() override; public: - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; OAdoIndex(bool _bCase, OConnection* _pConnection,ADOIndex* _pIndex); OAdoIndex(bool _bCase, OConnection* _pConnection); // css::lang::XUnoTunnel diff --git a/connectivity/source/inc/ado/AKey.hxx b/connectivity/source/inc/ado/AKey.hxx index c44a9aa9f5ca..499e36c7695d 100644 --- a/connectivity/source/inc/ado/AKey.hxx +++ b/connectivity/source/inc/ado/AKey.hxx @@ -41,8 +41,6 @@ namespace connectivity public: virtual void refreshColumns() override; public: - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; OAdoKey(bool _bCase,OConnection* _pConnection,ADOKey* _pKey); OAdoKey(bool _bCase,OConnection* _pConnection); diff --git a/connectivity/source/inc/ado/ATable.hxx b/connectivity/source/inc/ado/ATable.hxx index ca7882686695..e40698556e7c 100644 --- a/connectivity/source/inc/ado/ATable.hxx +++ b/connectivity/source/inc/ado/ATable.hxx @@ -60,8 +60,6 @@ namespace connectivity virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException) override; static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId(); - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; // XRename virtual void SAL_CALL rename( const OUString& newName ) throw(css::sdbc::SQLException, css::container::ElementExistException, css::uno::RuntimeException) override; diff --git a/connectivity/source/inc/ado/AUser.hxx b/connectivity/source/inc/ado/AUser.hxx index 3bd925584f9a..5e29c3f6eb38 100644 --- a/connectivity/source/inc/ado/AUser.hxx +++ b/connectivity/source/inc/ado/AUser.hxx @@ -55,9 +55,6 @@ namespace connectivity // css::lang::XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException) override; static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId(); - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; - // XUser virtual void SAL_CALL changePassword( const OUString& objPassword, const OUString& newPassword ) throw(css::sdbc::SQLException, css::uno::RuntimeException) override; // XAuthorizable diff --git a/connectivity/source/inc/ado/AView.hxx b/connectivity/source/inc/ado/AView.hxx index f6c24247e22c..cb7ce04c2aba 100644 --- a/connectivity/source/inc/ado/AView.hxx +++ b/connectivity/source/inc/ado/AView.hxx @@ -46,8 +46,6 @@ namespace connectivity // css::lang::XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException) override; static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId(); - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; WpADOView getImpl() const { return m_aView;} }; -- cgit