summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-05-18 09:18:58 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-05-18 12:01:40 +0200
commitd1399191e0a18ac5cae0d63319a48864f1f481e7 (patch)
tree1193c594f65241eac4f4611a4d5f249c721224e1 /include/svl
parent2228203a8211dea1c8addb98298096a094ec788b (diff)
svl: remove redundant virtual keywords in SfxGrabBagItem
Change-Id: I6e336491da7490390970b670b1c35e2c860f43ce Reviewed-on: https://gerrit.libreoffice.org/37745 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/grabbagitem.hxx10
1 files changed, 5 insertions, 5 deletions
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<OUString, css::uno::Any>& 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