Changeset 10429 for trunk/FACT++/src/RemoteControl.cc
- Timestamp:
- 04/20/11 16:58:05 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/RemoteControl.cc
r10390 r10429 46 46 // If we are continously flushing the buffer omit the buffer size 47 47 // If we are buffering show the buffer size 48 const string beg = "\n"+ GetLinePrompt();48 const string beg = '\n' + GetLinePrompt(); 49 49 50 50 // If we have not cd'ed to a server show only the line start … … 55 55 const ClientList::const_iterator l = fClientList.find(fCurrentServer); 56 56 if (l==fClientList.end()) 57 return beg + "> "; //Form("\n[%d] \033[34m\033[1m%s\033[0m> ", GetLine(), fCurrentServer.c_str());57 return beg + "> "; 58 58 59 59 const State state = GetState(fCurrentServer, l->second->GetState()); 60 60 61 61 // 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"; 63 63 64 64 // If no match found or something wrong found just output the server
Note:
See TracChangeset
for help on using the changeset viewer.