loplugin:unnecessaryoverride (dtors) in embeddedobj

Change-Id: I5a65a8816438b7e777cabeb334a8cd7bcf4c814e
This commit is contained in:
Stephan Bergmann
2016-12-05 09:04:45 +01:00
parent 40c0438386
commit 0fef19f121

View File

@@ -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 )
{