Ignore:
Timestamp:
02/18/09 12:07:41 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r9345 r9347  
    261261    while ((cont=Next()))
    262262    {
    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);
    268266    }
    269267}
Note: See TracChangeset for help on using the changeset viewer.