Ignore:
Timestamp:
09/17/02 11:06:33 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1524 r1527  
    392392    // loop over all tasks for processing
    393393    //
     394    Bool_t rc = kTRUE;
    394395    while ( (task=(MTask*)Next()) )
    395396    {
     
    420421            // an error occured: stop eventloop
    421422            //
    422             return kFALSE;
     423            rc = kFALSE;
     424            break;
    423425
    424426        case kCONTINUE:
     
    426428            // something occured: skip the rest of the tasks for this event
    427429            //
    428             return kTRUE;
     430            rc = kTRUE;
     431            break;
    429432
    430433        default:
    431434            *fLog << warn << "MTaskList::Process: Unknown return value from MTask::Process()... ignored." << endl;
     435            continue;
    432436        }
     437        break;
    433438    }
    434439
     
    436441        fParList->ResetBit(MParList::kDoNotReset);
    437442
    438     return kTRUE;
     443    return rc;
    439444}
    440445
Note: See TracChangeset for help on using the changeset viewer.