Ignore:
Timestamp:
07/05/01 13:23:12 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r851 r855  
    5959MTaskList::MTaskList(MTaskList &ts)
    6060{
    61   fTasks.AddAll(&ts.fTasks);
    62 }
    63 
    64 // --------------------------------------------------------------------------
    65 //
    66 //  create the Iterator over the tasklist
     61    fTasks.AddAll(&ts.fTasks);
     62}
     63
     64// --------------------------------------------------------------------------
     65//
     66//  Set the logging stream for the all tasks in the list and the tasklist
     67//  itself.
    6768//
    6869void MTaskList::SetLogStream(MLog *log)
    6970{
     71    //
     72    // create the Iterator over the tasklist
     73    //
    7074    TIter Next(&fTasks);
    7175
     
    167171{
    168172    //
    169     // Reset the HasChanged flag.
     173    // Reset the ReadyToSave flag.
    170174    // Reset all containers.
    171175    //
    172     fParList->SetHasChanged(kFALSE);
     176    // FIXME: To run a tasklist as a single task in another tasklist we
     177    //        have to make sure, that the Parameter list isn't reset.
     178    //
     179    fParList->SetReadyToSave(kFALSE);
    173180    fParList->Reset();
    174181
     
    231238
    232239    //
    233     // Reset the HasChanged flag.
     240    // Reset the ReadyToSave flag.
    234241    // Reset all containers.
    235242    //
    236     fParList->SetHasChanged(kFALSE);
     243    // FIXME: To run a tasklist as a single task in another tasklist we
     244    //        have to make sure, that the Parameter list isn't reset.
     245    //
     246    fParList->SetReadyToSave(kFALSE);
    237247    fParList->Reset();
    238248
Note: See TracChangeset for help on using the changeset viewer.