[Libreoffice-commits] core.git: oox/source
Miklos Vajna (via logerrit)
logerrit at kemper.freedesktop.org
Tue Sep 1 07:08:21 UTC 2020
oox/source/drawingml/diagram/rulelistcontext.cxx | 2 +-
oox/source/drawingml/diagram/rulelistcontext.hxx | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 7ba004dec4a4cca6ebce9b72990ff4cf5e3b1d72
Author: Miklos Vajna <vmiklos at collabora.com>
AuthorDate: Mon Aug 31 21:05:54 2020 +0200
Commit: Miklos Vajna <vmiklos at collabora.com>
CommitDate: Tue Sep 1 09:07:42 2020 +0200
oox: various small cleanups
Change-Id: Icca565ed3f104db5d270087f8306f6b22a22e9cd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101767
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos at collabora.com>
diff --git a/oox/source/drawingml/diagram/rulelistcontext.cxx b/oox/source/drawingml/diagram/rulelistcontext.cxx
index 69e930cdc758..76518ca9e662 100644
--- a/oox/source/drawingml/diagram/rulelistcontext.cxx
+++ b/oox/source/drawingml/diagram/rulelistcontext.cxx
@@ -31,7 +31,7 @@ RuleListContext::RuleListContext(ContextHandler2Helper const& rParent, const Lay
assert(pNode);
}
-RuleListContext::~RuleListContext() {}
+RuleListContext::~RuleListContext() = default;
core::ContextHandlerRef RuleListContext::onCreateContext(sal_Int32 nElement,
const AttributeList& rAttribs)
diff --git a/oox/source/drawingml/diagram/rulelistcontext.hxx b/oox/source/drawingml/diagram/rulelistcontext.hxx
index 43098ce71833..83a86c49e0c3 100644
--- a/oox/source/drawingml/diagram/rulelistcontext.hxx
+++ b/oox/source/drawingml/diagram/rulelistcontext.hxx
@@ -29,10 +29,10 @@ class RuleListContext : public oox::core::ContextHandler2
{
public:
RuleListContext(ContextHandler2Helper const& rParent, const LayoutAtomPtr& pNode);
- virtual ~RuleListContext() override;
+ ~RuleListContext() override;
- virtual oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElement,
- const AttributeList& rAttribs) override;
+ oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElement,
+ const AttributeList& rAttribs) override;
private:
LayoutAtomPtr mpNode;
More information about the Libreoffice-commits
mailing list