Changeset 7853
- Timestamp:
- 08/05/06 10:09:52 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7852 r7853 22 22 * datacente/macros/fillsignal.C: 23 23 - still searched for tabs DiffHi and DiffLo... fixed. 24 25 * mbase/MLog.cc, mbase/MLogHtml.cc: 26 - switched off buffering for ofstreams 27 - fixed length argument for the case </> are replaced by html-code 24 28 25 29 -
trunk/MagicSoft/Mars/mbase/MLog.cc
r7808 r7853 659 659 TString n(fname ? fname : txt); 660 660 gSystem->ExpandPathName(n); 661 661 662 fOut = new ofstream(n.Data()); 663 664 // switch off buffering 665 fOut->rdbuf()->pubsetbuf(0,0); 666 662 667 fOutAllocated = kTRUE; 663 668 } -
trunk/MagicSoft/Mars/mbase/MLogHtml.cc
r7632 r7853 54 54 return; 55 55 } 56 57 // switch off buffering 58 fOut->rdbuf()->pubsetbuf(0,0); 56 59 57 60 MTime time; … … 129 132 txt.ReplaceAll("<", "<"); 130 133 131 fOut->write(txt.Data(), len);134 fOut->write(txt.Data(), txt.Length()); 132 135 if (fUnderline) 133 136 {
Note:
See TracChangeset
for help on using the changeset viewer.