Ignore:
Timestamp:
02/13/07 11:15:29 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MLog.h

    r8103 r8315  
    11/* ======================================================================== *\
    2 !  $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.36 2006-10-17 14:11:36 tbretz Exp $
     2!  $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.37 2007-02-13 11:06:53 tbretz Exp $
    33\* ======================================================================== */
    44#ifndef MARS_MLog
     
    220220            const Int_t l = (78-str.Length())/2-3;
    221221            str.Prepend("={ ");
    222             str.Prepend('-', l);
     222            str.Prepend('-', l<1?1:l);
    223223            str.Append(" }=");
    224             str.Append('-', l);
     224            str.Append('-', l<1?1:l);
    225225        }
    226226        if (str.Length()<78)
Note: See TracChangeset for help on using the changeset viewer.