diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-15 08:54:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-15 09:42:02 +0100 |
commit | 8c4c1abc9ffa7d9f893d4d16de61594ee090f10b (patch) | |
tree | 137c17f7ae50b12eb5e00c7a06aaef3e825dea5c /svx/inc | |
parent | 4ddd6f329163cbac5ff31e51a5b028d8eeedadd2 (diff) |
loplugin:staticmethods in svx
Change-Id: I94df3aa40fa79877ccebf1ed8709bd7cc47748d9
Reviewed-on: https://gerrit.libreoffice.org/63398
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/sxcikitm.hxx | 2 | ||||
-rw-r--r-- | svx/inc/sxmkitm.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/inc/sxcikitm.hxx b/svx/inc/sxcikitm.hxx index c651227806d4..03740ab7758c 100644 --- a/svx/inc/sxcikitm.hxx +++ b/svx/inc/sxcikitm.hxx @@ -36,7 +36,7 @@ public: virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override; virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override; - OUString GetValueTextByPos(sal_uInt16 nPos) const; + static OUString GetValueTextByPos(sal_uInt16 nPos); virtual bool GetPresentation(SfxItemPresentation ePres, MapUnit eCoreMetric, MapUnit ePresMetric, OUString& rText, const IntlWrapper&) const override; }; diff --git a/svx/inc/sxmkitm.hxx b/svx/inc/sxmkitm.hxx index 2d9eb52041d4..2eed2e61bef2 100644 --- a/svx/inc/sxmkitm.hxx +++ b/svx/inc/sxmkitm.hxx @@ -36,7 +36,7 @@ public: virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override; virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override; - OUString GetValueTextByPos(sal_uInt16 nPos) const; + static OUString GetValueTextByPos(sal_uInt16 nPos); virtual bool GetPresentation(SfxItemPresentation ePres, MapUnit eCoreMetric, MapUnit ePresMetric, OUString& rText, const IntlWrapper&) const override; }; |