summaryrefslogtreecommitdiffstats
path: root/eventattacher
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-05 09:04:29 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-05 09:04:29 +0100
commit40c0438386abb5c1106a88ac1dd0c4ab6d16eae2 (patch)
tree0549778f8c65e60ceee8ed8a78164917e04fbcf3 /eventattacher
parentloplugin:unnecessaryoverride (dtors) in extensions (diff)
downloadcore-40c0438386abb5c1106a88ac1dd0c4ab6d16eae2.tar.gz
core-40c0438386abb5c1106a88ac1dd0c4ab6d16eae2.zip
loplugin:unnecessaryoverride (dtors) in eventattacher
Change-Id: I548d90cb5aec077b78965f34b9275ef6aef315b0
Diffstat (limited to 'eventattacher')
-rw-r--r--eventattacher/source/eventattacher.cxx7
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) ));