[Libreoffice-commits] core.git: writerfilter/source
Noel Grandin
noel at peralex.com
Mon Dec 7 01:06:57 PST 2015
writerfilter/source/ooxml/OOXMLPropertySet.hxx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
New commits:
commit 6010fefffcf57e84d1546421e85747a677680f60
Author: Noel Grandin <noel at peralex.com>
Date: Mon Dec 7 11:06:29 2015 +0200
loplugin:override
Change-Id: I0b7fa4d669a6bbf26c8cbf08ef009686919c9a60
diff --git a/writerfilter/source/ooxml/OOXMLPropertySet.hxx b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
index aa528a7..4af5aec 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;
More information about the Libreoffice-commits
mailing list