summaryrefslogtreecommitdiff
path: root/idl/source/objects/types.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-04 10:36:32 +0200
committerNoel Grandin <noel@peralex.com>2016-02-05 08:01:42 +0200
commit114904097baa0a456b59d168742c04a1c73432a8 (patch)
treed07c5937b77182dc26ed9cb88623cd4394601c21 /idl/source/objects/types.cxx
parentf811edfa9a0faaee2551be1fd9e401dfb4168a10 (diff)
remove unused UUID and VERSION from .SDI files
Change-Id: Ieb3e47c10c497a6f642f28a6741ac0fd2ecfd419
Diffstat (limited to 'idl/source/objects/types.cxx')
-rw-r--r--idl/source/objects/types.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx
index 71312b1d1bf8..8249cf14df78 100644
--- a/idl/source/objects/types.cxx
+++ b/idl/source/objects/types.cxx
@@ -31,7 +31,6 @@
SvMetaAttribute::SvMetaAttribute()
: aExport( true, false )
- , aIsCollection ( false, false )
, aReadOnlyDoc ( true, false )
, aHidden( false, false )
, bNewAttr( false )
@@ -41,7 +40,6 @@ SvMetaAttribute::SvMetaAttribute()
SvMetaAttribute::SvMetaAttribute( SvMetaType * pType )
: aType( pType )
, aExport( true, false )
- , aIsCollection ( false, false)
, aReadOnlyDoc ( true, false)
, aHidden( false, false )
, bNewAttr( false )
@@ -77,16 +75,6 @@ bool SvMetaAttribute::GetHidden() const
return static_cast<SvMetaAttribute *>(GetRef())->GetHidden();
}
-bool SvMetaAttribute::GetIsCollection() const
-{
- if( aIsCollection.IsSet() || !GetRef() )
- {
- return aIsCollection;
- }
-
- return static_cast<SvMetaSlot *>(GetRef())->GetIsCollection();
-}
-
bool SvMetaAttribute::GetReadOnlyDoc() const
{
if( aReadOnlyDoc.IsSet() || !GetRef() ) return aReadOnlyDoc;
@@ -170,7 +158,6 @@ void SvMetaAttribute::ReadAttributesSvIdl( SvIdlDataBase & rBase,
aSlotId.ReadSvIdl( rBase, SvHash_SlotId(), rInStm );
aExport.ReadSvIdl( SvHash_Export(), rInStm );
aHidden.ReadSvIdl( SvHash_Hidden(), rInStm );
- aIsCollection.ReadSvIdl( SvHash_IsCollection(), rInStm );
aReadOnlyDoc.ReadSvIdl( SvHash_ReadOnlyDoc(), rInStm );
}