summaryrefslogtreecommitdiff
path: root/idl/inc/basobj.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-04 13:18:36 +0200
committerNoel Grandin <noel@peralex.com>2016-02-05 09:35:29 +0200
commitd932eb95f4009a34af85b063df11aac83368950a (patch)
treeefa46d3354ea0d7dc71a52d5ccb543e67b22bae6 /idl/inc/basobj.hxx
parent6b0279c095406095200e48efe746fe9b23e4cf4e (diff)
remove unused Hidden/Description/UnoName from .SDI files
Change-Id: I9660690b29da411dcdf148007242ffa944957f78
Diffstat (limited to 'idl/inc/basobj.hxx')
-rw-r--r--idl/inc/basobj.hxx9
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; }