| 139 | } |
| 140 | |
| 141 | virtual void tokenizeSearch (vector<string> *dest, const string search) |
| 142 | { |
| 143 | if (!search.empty()) |
| 144 | split_string(dest, to_search_normalized(search), " "); |
| 145 | } |
| 146 | |
| 147 | virtual bool showEntry(const ListEntry<T> *entry, const vector<string> &search_tokens) |
| 148 | { |
nothing calls this directly
no test coverage detected