summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-11-24 11:28:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-11-24 11:28:15 +0100
commit675df4a72e7cc695fec18869dd015a872c287c6e (patch)
tree9103a803b6eb00c6b5d2de9018ed7fed6550052f /vbahelper
parent5ebfc3ad9b27eed8571fa501ed3727218e0008fb (diff)
loplugin:unnecessaryoverride (dtors) in vbahelper
Change-Id: I809869a438b710b2c4722027cc78d39a81b0a092
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/msforms/vbacontrol.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/vbahelper/source/msforms/vbacontrol.cxx b/vbahelper/source/msforms/vbacontrol.cxx
index 69e16518838c..7d72fc86caa8 100644
--- a/vbahelper/source/msforms/vbacontrol.cxx
+++ b/vbahelper/source/msforms/vbacontrol.cxx
@@ -102,7 +102,7 @@ private:
ScVbaControl *pControl;
public:
explicit ScVbaControlListener( ScVbaControl *pTmpControl );
- virtual ~ScVbaControlListener() override;
+
virtual void SAL_CALL disposing( const lang::EventObject& rEventObject ) throw( uno::RuntimeException, std::exception ) override;
};
@@ -110,10 +110,6 @@ ScVbaControlListener::ScVbaControlListener( ScVbaControl *pTmpControl ): pContro
{
}
-ScVbaControlListener::~ScVbaControlListener()
-{
-}
-
void SAL_CALL
ScVbaControlListener::disposing( const lang::EventObject& ) throw( uno::RuntimeException, std::exception )
{