Changeset 9347 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 02/18/09 12:07:41 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParList.cc
r9345 r9347 261 261 while ((cont=Next())) 262 262 { 263 if (!dynamic_cast<MParContainer*>(cont)) 264 continue; 265 266 cont->SetBit(kMustCleanup); 267 AddToList(cont); 263 MParContainer *par = dynamic_cast<MParContainer*>(cont); 264 if (par) 265 AddToList(par); 268 266 } 269 267 }
Note:
See TracChangeset
for help on using the changeset viewer.