diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/grabbagitem.hxx | 10 |
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 |