Ignore:
Timestamp:
04/20/11 16:58:05 (14 years ago)
Author:
tbretz
Message:
Moved the tools function into their own namespace to get rid of problems whenlinking with root.
File:
1 edited

Legend:

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

    r10390 r10429  
    4646    // If we are continously flushing the buffer omit the buffer size
    4747    // If we are buffering show the buffer size
    48     const string beg = "\n" + GetLinePrompt();
     48    const string beg = '\n' + GetLinePrompt();
    4949
    5050    // If we have not cd'ed to a server show only the line start
     
    5555    const ClientList::const_iterator l = fClientList.find(fCurrentServer);
    5656    if (l==fClientList.end())
    57         return beg + "> ";//Form("\n[%d] \033[34m\033[1m%s\033[0m> ", GetLine(), fCurrentServer.c_str());
     57        return beg + "> ";
    5858
    5959    const State state = GetState(fCurrentServer, l->second->GetState());
    6060
    6161    // The server
    62     const string serv = Form("\033[34m\033[1m%s\033[0m", fCurrentServer.c_str());
     62    const string serv = "\033[34m\033[1m"+fCurrentServer+"\033[0m";
    6363
    6464    // If no match found or something wrong found just output the server
Note: See TracChangeset for help on using the changeset viewer.