diff options
Diffstat (limited to 'include/svl/poolitem.hxx')
-rw-r--r-- | include/svl/poolitem.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/poolitem.hxx b/include/svl/poolitem.hxx index 81723690e7d4..feb209fa5f71 100644 --- a/include/svl/poolitem.hxx +++ b/include/svl/poolitem.hxx @@ -236,7 +236,7 @@ public: static SfxPoolItem* CreateDefault(); explicit SfxVoidItem( sal_uInt16 nWhich ); SfxVoidItem( const SfxVoidItem& ); - virtual ~SfxVoidItem(); + virtual ~SfxVoidItem() override; virtual bool operator==( const SfxPoolItem& ) const override; @@ -260,7 +260,7 @@ public: SfxSetItem( sal_uInt16 nWhich, SfxItemSet *pSet ); SfxSetItem( sal_uInt16 nWhich, const SfxItemSet &rSet ); SfxSetItem( const SfxSetItem&, SfxItemPool *pPool = nullptr ); - virtual ~SfxSetItem(); + virtual ~SfxSetItem() override; virtual bool operator==( const SfxPoolItem& ) const override; @@ -286,7 +286,7 @@ class SVL_DLLPUBLIC SfxPoolItemHint: public SfxHint SfxPoolItem* pObj; public: explicit SfxPoolItemHint( SfxPoolItem* Object ) : pObj(Object) {} - virtual ~SfxPoolItemHint() {} + virtual ~SfxPoolItemHint() override {} SfxPoolItem* GetObject() const { return pObj; } }; |