summaryrefslogtreecommitdiff
path: root/include/basic/sbmeth.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basic/sbmeth.hxx')
-rw-r--r--include/basic/sbmeth.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/basic/sbmeth.hxx b/include/basic/sbmeth.hxx
index a49bcf245c26..49f22199b37e 100644
--- a/include/basic/sbmeth.hxx
+++ b/include/basic/sbmeth.hxx
@@ -48,7 +48,7 @@ class BASIC_DLLPUBLIC SbMethod : public SbxMethod
BASIC_DLLPRIVATE SbMethod( const SbMethod& );
virtual bool LoadData( SvStream&, sal_uInt16 ) override;
virtual bool StoreData( SvStream& ) const override;
- virtual ~SbMethod();
+ virtual ~SbMethod() override;
public:
SBX_DECL_PERSIST_NODATA(SBXID_BASICMETHOD,2);
@@ -78,7 +78,7 @@ public:
: SbMethod( rName, pImplMeth->GetType(), nullptr )
, mxImplMeth( pImplMeth )
{}
- virtual ~SbIfaceMapperMethod();
+ virtual ~SbIfaceMapperMethod() override;
SbMethod* getImplMethod()
{ return mxImplMeth; }
};