Changeset 10266 for trunk/FACT++


Ignore:
Timestamp:
03/30/11 15:33:37 (14 years ago)
Author:
tbretz
Message:
Omitted a variable - just cosmetics.
File:
1 edited

Legend:

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

    r10183 r10266  
    55string LocalConsole::GetUpdatePrompt() const
    66{
    7     const string beg = GetLinePrompt();
    8 
    97    // Compile a string like "server:state> "
    108    const string end =
     
    1412    // If we are continously flushing the buffer omit the buffer size
    1513    // If we are buffering show the buffer size
    16     return "\n" + beg + " " + end;
     14    return GetLinePrompt() + " " + end;
    1715}
    1816
     
    2422    //return boost::regex_replace(s, boost::regex("\033[[0-9]+m"), "");
    2523
    26     const string beg = GetLinePrompt();
    27 
    2824    const string end =
    2925        Form("%s:%s> ", fName.c_str(),
    3026             fStateMachine->GetStateName().c_str());
    3127
    32     return beg + " " + end;
     28    return GetLinePrompt() + " " + end;
    3329}
Note: See TracChangeset for help on using the changeset viewer.