Ignore:
Timestamp:
05/03/06 11:54:00 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
2 edited

Legend:

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

    r7682 r7685  
    318318// for one of the tasks
    319319//
    320 Bool_t MTaskList::AddToList(const TList &list)
     320Bool_t MTaskList::AddToList(const TList &list, const char *tType)
    321321{
    322322    TIter Next(&list);
     
    330330        }
    331331
    332         if (!AddToList(obj))
     332        if (!AddToList(static_cast<MTask*>(obj), tType))
    333333            return kFALSE;
    334334    }
  • trunk/MagicSoft/Mars/mbase/MTaskList.h

    r7682 r7685  
    4747    Bool_t AddToListAfter(MTask *task, const MTask *where, const char *tType="All");
    4848    Bool_t AddToList(MTask *task, const char *tType="All");
    49     Bool_t AddToList(const TList &list);
     49    Bool_t AddToList(const TList &list, const char *tType="All");
    5050
    5151    void SetSerialNumber(Byte_t num);
Note: See TracChangeset for help on using the changeset viewer.