summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-08-31 21:05:54 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-09-01 09:07:42 +0200
commit7ba004dec4a4cca6ebce9b72990ff4cf5e3b1d72 (patch)
tree871dae09fc289de345216ff14c10e1f5afd50482 /oox
parentceae73dd294b5ca4073062afc1223efb1c206780 (diff)
oox: various small cleanups
Change-Id: Icca565ed3f104db5d270087f8306f6b22a22e9cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101767 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/diagram/rulelistcontext.cxx2
-rw-r--r--oox/source/drawingml/diagram/rulelistcontext.hxx6
2 files changed, 4 insertions, 4 deletions
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;