Kaydet (Commit) f963c988 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unnecessaryoverride (dtors) in animations

Change-Id: I51b94f43e27da93afb3c44ed5f68e70e457fe8ea
üst 8c3e1465
......@@ -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" };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment