remove filtering

This commit is contained in:
Andrzej Rybczak
2014-11-05 00:19:44 +01:00
parent 413fe866de
commit 309a4989c9
26 changed files with 317 additions and 1040 deletions

View File

@@ -89,20 +89,6 @@ private:
std::vector<std::string> m_values;
};
/// called each time user changes current filter (while being inside Window::getString)
struct ApplyFilterImmediately
{
template <typename StringT>
ApplyFilterImmediately(Filterable *f, StringT &&filter)
: m_f(f), m_s(std::forward<StringT>(filter)) { }
bool operator()(const char *s);
private:
Filterable *m_f;
std::string m_s;
};
struct TryExecuteImmediateCommand
{
bool operator()(const char *s);