From d1399191e0a18ac5cae0d63319a48864f1f481e7 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 18 May 2017 09:18:58 +0200 Subject: svl: remove redundant virtual keywords in SfxGrabBagItem Change-Id: I6e336491da7490390970b670b1c35e2c860f43ce Reviewed-on: https://gerrit.libreoffice.org/37745 Reviewed-by: Miklos Vajna Tested-by: Jenkins --- include/svl/grabbagitem.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/svl/grabbagitem.hxx b/include/svl/grabbagitem.hxx index ca49a27c6835..26aa0f8b818c 100644 --- a/include/svl/grabbagitem.hxx +++ b/include/svl/grabbagitem.hxx @@ -25,7 +25,7 @@ public: SfxGrabBagItem(); SfxGrabBagItem(sal_uInt16 nWhich); - virtual ~SfxGrabBagItem() override; + ~SfxGrabBagItem() override; const std::map& GetGrabBag() const { @@ -37,11 +37,11 @@ public: return m_aMap; } - virtual bool operator==(const SfxPoolItem&) const override; - virtual SfxPoolItem* Clone(SfxItemPool* pPool = nullptr) const override; + bool operator==(const SfxPoolItem&) const override; + SfxPoolItem* Clone(SfxItemPool* pPool = nullptr) const override; - virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override; - virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override; + bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override; + bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override; }; #endif -- cgit