diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-29 08:38:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-29 11:36:28 +0200 |
commit | 87b0eb0183e9a379a3e715dcb5de29b29e406686 (patch) | |
tree | b024052c848a72cfcf9303d0d0830a7e1b2f4ad3 /include/basic | |
parent | b399bb8760e87386e74804a33847ff6f5ae571af (diff) |
loplugin:virtualdown in basctl,basic
Change-Id: If0d729ee84263a5afb2c7acb2d62b08602aa59f4
Reviewed-on: https://gerrit.libreoffice.org/52046
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/sbx.hxx | 2 | ||||
-rw-r--r-- | include/basic/sbxcore.hxx | 1 | ||||
-rw-r--r-- | include/basic/sbxvar.hxx | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx index 3bc9b9953017..96fb4cd07a1a 100644 --- a/include/basic/sbx.hxx +++ b/include/basic/sbx.hxx @@ -127,7 +127,7 @@ public: virtual void Clear() override; sal_uInt16 Count() const; virtual SbxDataType GetType() const override; - virtual SbxClassType GetClass() const override; + virtual SbxClassType GetClass() const; SbxVariableRef& GetRef( sal_uInt16 ); SbxVariable* Get( sal_uInt16 ); void Put( SbxVariable*, sal_uInt16 ); diff --git a/include/basic/sbxcore.hxx b/include/basic/sbxcore.hxx index e0d90d367885..9d6b45652a16 100644 --- a/include/basic/sbxcore.hxx +++ b/include/basic/sbxcore.hxx @@ -73,7 +73,6 @@ public: virtual void SetModified( bool ); virtual SbxDataType GetType() const; - virtual SbxClassType GetClass() const; virtual void Clear() = 0; diff --git a/include/basic/sbxvar.hxx b/include/basic/sbxvar.hxx index c5cd2826114b..ae41a2b069a1 100644 --- a/include/basic/sbxvar.hxx +++ b/include/basic/sbxvar.hxx @@ -121,7 +121,7 @@ public: bool IsNumericRTL() const; // #41692 Interface for Basic bool ImpIsNumeric( bool bOnlyIntntl ) const; // Implementation - virtual SbxClassType GetClass() const override; + virtual SbxClassType GetClass() const; virtual SbxDataType GetType() const override; SbxDataType GetFullType() const { return aData.eType;} bool SetType( SbxDataType ); |