diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-29 10:58:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-29 18:15:16 +0200 |
commit | 8e27afa534f5e3a0c610b36e7ed4d392b532b49d (patch) | |
tree | 416a0f26b455a928087df25341312eff4febe2c5 /svx | |
parent | ed316832e9e9028444cbb587ce644d7acaacf1e7 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Ic044a6e4568e707022d87bc5712205fbdf084ba2
Reviewed-on: https://gerrit.libreoffice.org/52067
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-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 b26d75b40ff7..c651227806d4 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; - virtual OUString GetValueTextByPos(sal_uInt16 nPos) const; + OUString GetValueTextByPos(sal_uInt16 nPos) const; 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 a61ea93d0848..2d9eb52041d4 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; - virtual OUString GetValueTextByPos(sal_uInt16 nPos) const; + OUString GetValueTextByPos(sal_uInt16 nPos) const; virtual bool GetPresentation(SfxItemPresentation ePres, MapUnit eCoreMetric, MapUnit ePresMetric, OUString& rText, const IntlWrapper&) const override; }; |