- Timestamp:
- 09/22/10 09:15:27 (14 years ago)
- Location:
- trunk/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/Changelog
r9934 r9935 35 35 * mbase/MContinue.cc: 36 36 - no need to call MTask::GetFilter(), GetFilter() is enough 37 38 * mfbase/MF.cc: 39 - accept = as a conditional sign 40 - make sure the return code of the evaluated filter is corectly returned 37 41 38 42 -
trunk/Mars/mfbase/MF.cc
r8171 r9935 530 530 const Int_t fg = rule.First('>'); 531 531 const Int_t fl = rule.First('<'); 532 533 if (fg<0 && fl<0) 532 const Int_t fe = rule.First('='); 533 534 if (fg<0 && fl<0 && fe<0) 534 535 { 535 536 MFilter *f = (MFilter*)GetNewObject(rule, MFilter::Class()); … … 567 568 } 568 569 569 if (fF->ReadEnv(env, prefix, print)==kERROR)570 return kERROR;571 572 570 // This is a workaround, because MFilter::ReadEnv and fF->ReadEnv 573 571 // might check for "Inverted" in this case both gets inverted … … 578 576 SetInverted(kFALSE);*/ 579 577 580 return kTRUE;581 } 578 return fF->ReadEnv(env, prefix, print); 579 }
Note:
See TracChangeset
for help on using the changeset viewer.