diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-11-23 18:36:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-11-23 18:36:18 +0100 |
commit | f963c98845303df5a9bc80dd834005cf745a1d76 (patch) | |
tree | bef4ec9728a539f0114cc5610ed9b98088d43fde /animations/source | |
parent | 8c3e1465223bd8c824c4cecfd0e6fc387583e592 (diff) |
loplugin:unnecessaryoverride (dtors) in animations
Change-Id: I51b94f43e27da93afb3c44ed5f68e70e457fe8ea
Diffstat (limited to 'animations/source')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index 16deb207a782..db17efc1b558 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -129,7 +129,6 @@ class AnimationNode : public AnimationNodeBase public: explicit AnimationNode(sal_Int16 nNodeType); explicit AnimationNode(const AnimationNode& rNode); - virtual ~AnimationNode() override; // XInterface virtual Any SAL_CALL queryInterface( const Type& aType ) throw (RuntimeException, std::exception) override; @@ -352,7 +351,6 @@ class TimeContainerEnumeration : public ::cppu::WeakImplHelper< XEnumeration > { public: explicit TimeContainerEnumeration( const ChildList_t &rChildren ); - virtual ~TimeContainerEnumeration() override; // Methods virtual sal_Bool SAL_CALL hasMoreElements() throw (RuntimeException, std::exception) override; @@ -375,10 +373,6 @@ TimeContainerEnumeration::TimeContainerEnumeration( const ChildList_t &rChildren maIter = maChildren.begin(); } -TimeContainerEnumeration::~TimeContainerEnumeration() -{ -} - // Methods sal_Bool SAL_CALL TimeContainerEnumeration::hasMoreElements() throw (RuntimeException, std::exception) { @@ -500,10 +494,6 @@ AnimationNode::AnimationNode( const AnimationNode& rNode ) { } -AnimationNode::~AnimationNode() -{ -} - Sequence<OUString> getSupportedServiceNames_PAR() { return { "com.sun.star.animations.ParallelTimeContainer" }; |