diff options
Diffstat (limited to 'idl/inc/basobj.hxx')
-rw-r--r-- | idl/inc/basobj.hxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/idl/inc/basobj.hxx b/idl/inc/basobj.hxx index b89c62fb0324..9639b87ef6c6 100644 --- a/idl/inc/basobj.hxx +++ b/idl/inc/basobj.hxx @@ -89,7 +89,6 @@ class SvMetaObject : public SvRttiBase protected: SvString aName; SvHelpText aHelpText; - SvString aDescription; bool ReadNameSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ); void DoReadContextSvIdl( SvIdlDataBase &, SvTokenStream & rInStm, @@ -107,7 +106,6 @@ public: virtual bool SetName( const OString& rName, SvIdlDataBase * = nullptr ); virtual const SvString & GetName() const { return aName; } virtual const SvString & GetHelpText() const { return aHelpText; } - virtual const SvString& GetDescription() const{ return aDescription; } virtual bool Test( SvIdlDataBase &, SvTokenStream & rInStm ); virtual bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ); @@ -160,13 +158,6 @@ public: : aRef->GetHelpText(); } - const SvString & GetDescription() const override - { - return ( !aRef.Is() - || !SvMetaObject::GetDescription().getString().isEmpty() ) - ? SvMetaObject::GetDescription() - : aRef->GetDescription(); - } SvMetaReference * GetRef() const { return aRef; } void SetRef( SvMetaReference * pRef ) { aRef = pRef; } |