summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-12-07 11:06:29 +0200
committerNoel Grandin <noel@peralex.com>2015-12-07 11:06:29 +0200
commit6010fefffcf57e84d1546421e85747a677680f60 (patch)
tree2ff580bd6684e413c6c406b3ba95afbe6ba1360d /writerfilter
parent7e1bb64f1417e05ad29d20c6be212de68ce4a769 (diff)
loplugin:override
Change-Id: I0b7fa4d669a6bbf26c8cbf08ef009686919c9a60
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySet.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/writerfilter/source/ooxml/OOXMLPropertySet.hxx b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
index aa528a7a9590..4af5aec6c1ea 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySet.hxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
@@ -62,12 +62,12 @@ public:
OOXMLProperty(const OOXMLProperty & rSprm);
virtual ~OOXMLProperty();
- sal_uInt32 getId() const;
- Value::Pointer_t getValue();
- writerfilter::Reference<Properties>::Pointer_t getProps();
+ sal_uInt32 getId() const override;
+ Value::Pointer_t getValue() override;
+ writerfilter::Reference<Properties>::Pointer_t getProps() override;
#ifdef DEBUG_WRITERFILTER
- std::string getName() const;
- std::string toString() const;
+ std::string getName() const override;
+ std::string toString() const override;
#endif
void resolve(Properties & rProperties);
};
@@ -156,7 +156,7 @@ public:
OOXMLPropertySet();
virtual ~OOXMLPropertySet();
- void resolve(Properties & rHandler);
+ void resolve(Properties & rHandler) override;
void add(OOXMLProperty::Pointer_t pProperty);
void add(OOXMLPropertySet::Pointer_t pPropertySet);
OOXMLPropertySet * clone() const;