Changeset 10494
- Timestamp:
- 04/29/11 12:50:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/RemoteControl.h
r10429 r10494 65 65 str.append("/"); 66 66 } 67 static void chop(std::string &str) 68 { 69 const size_t p = str.find_first_of('/'); 70 if (p!=string::npos) 71 str = str.substr(p+1); 72 } 67 73 68 74 // This funtion defines which generator should be called. … … 90 96 } 91 97 else 92 return T::Complete(GetCommandList(fCurrentServer), text); 98 { 99 std::vector<std::string> v = GetCommandList(fCurrentServer); 100 for_each(v.begin(), v.end(), RemoteControl::chop); 101 return T::Complete(v, text); 102 } 93 103 } 94 104 return T::Complete(GetCommandList(l), text);
Note:
See TracChangeset
for help on using the changeset viewer.