Kaydet (Commit) ae74444c authored tarafından Miklos Vajna's avatar Miklos Vajna

oox: remove redundant virtuals, implied by override

Change-Id: Ia72aa17e82ccdf78b0581228b84ffafc1f6be4ba
Reviewed-on: https://gerrit.libreoffice.org/35824Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
Tested-by: 's avatarJenkins <ci@libreoffice.org>
üst 1646e016
...@@ -23,9 +23,9 @@ class LockedCanvasContext : public oox::core::ContextHandler2 ...@@ -23,9 +23,9 @@ class LockedCanvasContext : public oox::core::ContextHandler2
{ {
public: public:
explicit LockedCanvasContext(oox::core::ContextHandler2Helper& rParent); explicit LockedCanvasContext(oox::core::ContextHandler2Helper& rParent);
virtual ~LockedCanvasContext() override; ~LockedCanvasContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 Element, const ::oox::AttributeList& rAttribs) override; oox::core::ContextHandlerRef onCreateContext(sal_Int32 Element, const ::oox::AttributeList& rAttribs) override;
const oox::drawingml::ShapePtr& getShape() const oox::drawingml::ShapePtr& getShape()
{ {
......
...@@ -23,9 +23,9 @@ class WpgContext : public oox::core::ContextHandler2 ...@@ -23,9 +23,9 @@ class WpgContext : public oox::core::ContextHandler2
{ {
public: public:
explicit WpgContext(oox::core::ContextHandler2Helper& rParent); explicit WpgContext(oox::core::ContextHandler2Helper& rParent);
virtual ~WpgContext() override; ~WpgContext() override;
virtual oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken, const oox::AttributeList& rAttribs) override; oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken, const oox::AttributeList& rAttribs) override;
const oox::drawingml::ShapePtr& getShape() const oox::drawingml::ShapePtr& getShape()
{ {
......
...@@ -23,9 +23,9 @@ class WpsContext : public oox::core::ContextHandler2 ...@@ -23,9 +23,9 @@ class WpsContext : public oox::core::ContextHandler2
{ {
public: public:
WpsContext(oox::core::ContextHandler2Helper& rParent, css::uno::Reference<css::drawing::XShape> xShape); WpsContext(oox::core::ContextHandler2Helper& rParent, css::uno::Reference<css::drawing::XShape> xShape);
virtual ~WpsContext() override; ~WpsContext() override;
virtual oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken, const oox::AttributeList& rAttribs) override; oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken, const oox::AttributeList& rAttribs) override;
const oox::drawingml::ShapePtr& getShape() const oox::drawingml::ShapePtr& getShape()
{ {
......
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