summaryrefslogtreecommitdiff
path: root/idl/inc/types.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/inc/types.hxx')
-rw-r--r--idl/inc/types.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/idl/inc/types.hxx b/idl/inc/types.hxx
index 748dc6ef637d..47c56722bab1 100644
--- a/idl/inc/types.hxx
+++ b/idl/inc/types.hxx
@@ -107,19 +107,15 @@ public:
class SvMetaTypeEnum : public SvMetaType
{
+public:
SvRefMemberList<SvMetaEnumValue *> aEnumValueList;
OString aPrefix;
-protected:
- virtual void ReadContextSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) override;
-public:
SvMetaTypeEnum();
sal_uLong Count() const { return aEnumValueList.size(); }
const OString& GetPrefix() const { return aPrefix; }
SvMetaEnumValue * GetObject( sal_uLong n ) const
{ return aEnumValueList[n]; }
-
- virtual bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) override;
};
class SvMetaTypevoid : public SvMetaType