diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-28 10:44:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-28 10:44:49 +0200 |
commit | 7e49e303f800d1508643daa5a00e7f1603e6b73b (patch) | |
tree | fe0439f680c366382c7cb400d0b1997e1848e091 | |
parent | 5263b653b360e140c94eefe6d1f758aacc07ca78 (diff) |
loplugin:staticmethods
Change-Id: I597015df5c12040b1b2a108bcfbe2831fee6ec23
-rw-r--r-- | include/svx/svdmodel.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx index fa24d554d893..e8de6d0e4daf 100644 --- a/include/svx/svdmodel.hxx +++ b/include/svx/svdmodel.hxx @@ -551,8 +551,8 @@ public: bool IsWriter() const { return !bMyPool; } // Used as a fallback in *::ReadUserDataSequence() to process common properties - void ReadUserDataSequenceValue(const css::beans::PropertyValue *pValue); - void WriteUserDataSequence(css::uno::Sequence < css::beans::PropertyValue >& rValues, bool bBrowse = false); + static void ReadUserDataSequenceValue(const css::beans::PropertyValue *pValue); + static void WriteUserDataSequence(css::uno::Sequence < css::beans::PropertyValue >& rValues, bool bBrowse = false); /** returns the numbering type that is used to format page fields in drawing shapes */ virtual SvxNumType GetPageNumType() const; |