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:
parent
ab6849db55
commit
583c1400c2
2 changed files with 1 additions and 7 deletions
|
@ -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 );
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue