diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-05 09:04:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-05 09:04:29 +0100 |
commit | 40c0438386abb5c1106a88ac1dd0c4ab6d16eae2 (patch) | |
tree | 0549778f8c65e60ceee8ed8a78164917e04fbcf3 /eventattacher | |
parent | 13ce97351d1751eb24cf0cd1ad35048329407f15 (diff) |
loplugin:unnecessaryoverride (dtors) in eventattacher
Change-Id: I548d90cb5aec077b78965f34b9275ef6aef315b0
Diffstat (limited to 'eventattacher')
-rw-r--r-- | eventattacher/source/eventattacher.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/eventattacher/source/eventattacher.cxx b/eventattacher/source/eventattacher.cxx index a5c400513c10..03f075bd035d 100644 --- a/eventattacher/source/eventattacher.cxx +++ b/eventattacher/source/eventattacher.cxx @@ -209,7 +209,6 @@ class EventAttacherImpl : public WeakImplHelper < XEventAttacher2, XInitializati { public: explicit EventAttacherImpl( const Reference< XComponentContext >& ); - virtual ~EventAttacherImpl() override; // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) throw(RuntimeException, std::exception) override; @@ -283,12 +282,6 @@ EventAttacherImpl::EventAttacherImpl( const Reference< XComponentContext >& rxCo { } - -EventAttacherImpl::~EventAttacherImpl() -{ -} - - Reference< XInterface > SAL_CALL EventAttacherImpl_CreateInstance( const Reference< XMultiServiceFactory >& rSMgr ) throw( Exception ) { XEventAttacher *pEventAttacher = static_cast<XEventAttacher*>(new EventAttacherImpl( comphelper::getComponentContext(rSMgr) )); |