WaE: remove new warnings post DECLARE_LIST removal
This commit is contained in:
parent
91b2b268f0
commit
56db3e8789
1 changed files with 3 additions and 4 deletions
|
@ -698,8 +698,7 @@ void SvMetaClass::WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm )
|
|||
SvMetaClassList classList;
|
||||
SvSlotElementList aSlotList;
|
||||
InsertSlots(aSlotList, aSuperList, classList, ByteString(), rBase);
|
||||
ULONG n;
|
||||
for ( n=0; n<aSlotList.Count(); n++ )
|
||||
for (ULONG n=0; n<aSlotList.Count(); n++ )
|
||||
{
|
||||
SvSlotElement *pEle = aSlotList.GetObject( n );
|
||||
SvMetaSlot *pSlot = pEle->xSlot;
|
||||
|
@ -748,7 +747,7 @@ void SvMetaClass::WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm )
|
|||
}
|
||||
rOutStm << endl << "};" << endl << "#endif" << endl << endl;
|
||||
|
||||
for( n=0; n<aSlotList.Count(); n++ )
|
||||
for( ULONG n=0; n<aSlotList.Count(); n++ )
|
||||
{
|
||||
aSlotList.Seek(n);
|
||||
SvSlotElement* pEle = aSlotList.GetCurObject();
|
||||
|
@ -756,7 +755,7 @@ void SvMetaClass::WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm )
|
|||
pAttr->ResetSlotPointer();
|
||||
}
|
||||
|
||||
for ( n=0; n<aSlotList.Count(); n++ )
|
||||
for ( ULONG n=0; n<aSlotList.Count(); n++ )
|
||||
delete aSlotList.GetObject(n);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue