diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-09 09:37:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-09 09:43:53 +0200 |
commit | 3c14d8fd4c0ca3fb034a137436d0b0e584e2ab2e (patch) | |
tree | 77aff62c0c6ea5157651c3a828a1824b44cbe1f9 /idl/source/objects/slot.cxx | |
parent | cfa4ba4b2b7138f7b95fb725866ed37155ccceee (diff) |
rename aAttrList to aSlotList
since that is a more accurate reflection of it's use
Change-Id: Ic5933e5cdeefac7363975a5767be3ee5db99bd56
Diffstat (limited to 'idl/source/objects/slot.cxx')
-rw-r--r-- | idl/source/objects/slot.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index 06b06955c1d8..4717f5d6d60d 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -502,9 +502,9 @@ void SvMetaSlot::Insert( SvSlotElementList& rList, const OString& rPrefix, OString aSId = aBuf.makeStringAndClear(); xEnumSlot = nullptr; - for( m=0; m<rBase.GetAttrList().size(); m++ ) + for( m=0; m<rBase.GetSlotList().size(); m++ ) { - SvMetaAttribute * pAttr = rBase.GetAttrList()[m]; + SvMetaSlot * pAttr = rBase.GetSlotList()[m]; if (aSId.equals(pAttr->GetSlotId().getString())) { SvMetaSlot& rSlot = dynamic_cast<SvMetaSlot&>(*pAttr); @@ -513,7 +513,7 @@ void SvMetaSlot::Insert( SvSlotElementList& rList, const OString& rPrefix, } } - if ( m == rBase.GetAttrList().size() ) + if ( m == rBase.GetSlotList().size() ) { OSL_FAIL("Invalid EnumSlot!"); xEnumSlot = Clone(); |