diff options
Diffstat (limited to 'idl')
-rw-r--r-- | idl/inc/slot.hxx | 4 | ||||
-rw-r--r-- | idl/source/objects/slot.cxx | 6 |
2 files changed, 0 insertions, 10 deletions
diff --git a/idl/inc/slot.hxx b/idl/inc/slot.hxx index e3e8c196c5c3..87118d6cf8de 100644 --- a/idl/inc/slot.hxx +++ b/idl/inc/slot.hxx @@ -68,9 +68,6 @@ public: bool IsVariable() const; bool IsMethod() const; - void SetToggle( bool bSet ) { aToggle = bSet; } - void SetAutoUpdate( bool bSet ) { aAutoUpdate = bSet; } - void SetAsynchron( bool bSet ) { aAsynchron = bSet; } void SetRecordPerItem( bool bSet ) { aRecordPerItem = bSet; @@ -89,7 +86,6 @@ public: if( bSet ) aRecordPerItem = aRecordPerSet = false; } - void SetRecordAbsolute( bool bSet ) { aRecordAbsolute = bSet; } public: SvMetaObject * MakeClone() const; diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index d72e996eba68..eee05ade65ea 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -237,24 +237,18 @@ void SvMetaSlot::ReadAttributesSvIdl( SvIdlDataBase & rBase, if( aToggle.ReadSvIdl( SvHash_Toggle(), rInStm ) ) { - SetToggle( aToggle ); bOk = true; } if( aAutoUpdate.ReadSvIdl( SvHash_AutoUpdate(), rInStm ) ) { - SetAutoUpdate( aAutoUpdate ); bOk = true; } - if( aAsynchron.ReadSvIdl( SvHash_Asynchron(), rInStm ) ) { - SetAsynchron( aAsynchron ); bOk = true; } - if( aRecordAbsolute.ReadSvIdl( SvHash_RecordAbsolute(), rInStm ) ) { - SetRecordAbsolute( aRecordAbsolute); bOk = true; } if( aRecordPerItem.ReadSvIdl( SvHash_RecordPerItem(), rInStm ) ) |