Ignore:
Timestamp:
04/29/11 13:06:49 (14 years ago)
Author:
tbretz
Message:
Removed usage of Tools::Form.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Console.cc

    r10429 r10496  
    133133{
    134134    const string siz = fLogO.GetSizeStr();
    135     return fContinous ?
    136         Tools::Form("[%d]",    GetLine()) :
    137         Tools::Form("[%d:%s]", GetLine(), siz.c_str());
     135
     136    string rc = "[";
     137    rc += GetLine();
     138    return fContinous ? rc+']' : rc+':'+siz+']';
    138139}
    139140
Note: See TracChangeset for help on using the changeset viewer.