Changeset 2607 for trunk/MagicSoft/Mars/mfileio/MReadTree.cc
- Timestamp:
- 12/05/03 16:06:34 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfileio/MReadTree.cc
r2532 r2607 192 192 continue; 193 193 194 *fLog << err << "ERROR - File corrupt tion detected:" << endl;194 *fLog << err << "ERROR - File corruption detected:" << endl; 195 195 *fLog << " Due to several circumstances (such at a bug in MReadTree or wrong" << endl; 196 196 *fLog << " usage of the file UPDATE mode) you may have produced a file in which" << endl; … … 232 232 *fLog << GetNumEntry()-1 << ")" << endl; 233 233 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 } 235 245 236 246 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.