Ignore:
Timestamp:
12/05/03 16:06:34 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfileio/MReadTree.cc

    r2532 r2607  
    192192                continue;
    193193
    194             *fLog << err << "ERROR - File corrupttion detected:" << endl;
     194            *fLog << err << "ERROR - File corruption detected:" << endl;
    195195            *fLog << "  Due to several circumstances (such at a bug in MReadTree or wrong" << endl;
    196196            *fLog << "  usage of the file UPDATE mode) you may have produced a file in which" << endl;
     
    232232    *fLog << GetNumEntry()-1 << ")" << endl;
    233233
    234     //fNotify->Notify();
     234    if (!fNotify)
     235        return kTRUE;
     236
     237    TIter Next(fNotify);
     238    TObject *o=NULL;
     239    while ((o=Next()))
     240        if (!o->Notify())
     241        {
     242            *fLog << err << "Calling Notify() for object " << o->GetName() << " failed... abort." << endl;
     243            return kFALSE;
     244        }
    235245
    236246    return kTRUE;
Note: See TracChangeset for help on using the changeset viewer.