summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--animations/source/animcore/animcore.cxx10
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" };