Kaydet (Commit) d1399191 authored tarafından Miklos Vajna's avatar Miklos Vajna

svl: remove redundant virtual keywords in SfxGrabBagItem

Change-Id: I6e336491da7490390970b670b1c35e2c860f43ce
Reviewed-on: https://gerrit.libreoffice.org/37745Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
Tested-by: 's avatarJenkins <ci@libreoffice.org>
üst 2228203a
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment