loplugin:virtualdown in SbxValue

Change-Id: I746b6b7e18265366903825ccf6c94f672dc92db9
Reviewed-on: https://gerrit.libreoffice.org/73770
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin 2019-06-10 09:26:45 +02:00
parent ab6849db55
commit 583c1400c2
2 changed files with 1 additions and 7 deletions

View file

@ -690,11 +690,6 @@ bool SbxValue::ImpIsNumeric( bool bOnlyIntntl ) const
|| ( t >= SbxCHAR && t <= SbxUINT );
}
SbxClassType SbxValue::GetClass() const
{
return SbxClassType::Value;
}
SbxDataType SbxValue::GetType() const
{
return SbxDataType( aData.eType & 0x0FFF );

View file

@ -124,7 +124,6 @@ public:
bool IsNumericRTL() const; // #41692 Interface for Basic
bool ImpIsNumeric( bool bOnlyIntntl ) const; // Implementation
virtual SbxClassType GetClass() const;
virtual SbxDataType GetType() const override;
SbxDataType GetFullType() const { return aData.eType;}
bool SetType( SbxDataType );
@ -272,7 +271,7 @@ public:
void SetUserData( sal_uInt32 n ) { nUserData = n; }
virtual SbxDataType GetType() const override;
virtual SbxClassType GetClass() const override;
virtual SbxClassType GetClass() const;
// Parameter-Interface
virtual SbxInfo* GetInfo();