Changeset 8315 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 02/13/07 11:15:29 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MLog.h
r8103 r8315 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.3 6 2006-10-17 14:11:36tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.37 2007-02-13 11:06:53 tbretz Exp $ 3 3 \* ======================================================================== */ 4 4 #ifndef MARS_MLog … … 220 220 const Int_t l = (78-str.Length())/2-3; 221 221 str.Prepend("={ "); 222 str.Prepend('-', l );222 str.Prepend('-', l<1?1:l); 223 223 str.Append(" }="); 224 str.Append('-', l );224 str.Append('-', l<1?1:l); 225 225 } 226 226 if (str.Length()<78)
Note:
See TracChangeset
for help on using the changeset viewer.