diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-05 09:04:45 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-05 09:04:45 +0100 |
commit | 0fef19f1211bd4caad757a2b6ee6693369e69db0 (patch) | |
tree | 2e35dc3046d3f1095b4db665ec7b66328ade2cc5 /embeddedobj | |
parent | 40c0438386abb5c1106a88ac1dd0c4ab6d16eae2 (diff) |
loplugin:unnecessaryoverride (dtors) in embeddedobj
Change-Id: I5a65a8816438b7e777cabeb334a8cd7bcf4c814e
Diffstat (limited to 'embeddedobj')
-rw-r--r-- | embeddedobj/source/msole/ownview.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/embeddedobj/source/msole/ownview.cxx b/embeddedobj/source/msole/ownview.cxx index 352279d01534..5bd54df9155e 100644 --- a/embeddedobj/source/msole/ownview.cxx +++ b/embeddedobj/source/msole/ownview.cxx @@ -53,18 +53,12 @@ class DummyHandler_Impl : public ::cppu::WeakImplHelper< task::XInteractionHandl { public: DummyHandler_Impl() {} - virtual ~DummyHandler_Impl() override; virtual void SAL_CALL handle( const uno::Reference< task::XInteractionRequest >& xRequest ) throw( uno::RuntimeException, std::exception ) override; }; -DummyHandler_Impl::~DummyHandler_Impl() -{ -} - - void SAL_CALL DummyHandler_Impl::handle( const uno::Reference< task::XInteractionRequest >& ) throw( uno::RuntimeException, std::exception ) { |