diff options
author | deva <deva> | 2010-08-19 08:14:00 +0000 |
---|---|---|
committer | deva <deva> | 2010-08-19 08:14:00 +0000 |
commit | 145bc8467b9f4271ca15654bc4bc6f7a8bc816b6 (patch) | |
tree | df15aa4038ac3feda8791292b93591d40abb935d /client/debug.h | |
parent | 9df4f44e051cf0fa467b8280ee77799163e5c841 (diff) |
Added filter.
Diffstat (limited to 'client/debug.h')
-rw-r--r-- | client/debug.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/debug.h b/client/debug.h index e583afc..e75dad0 100644 --- a/client/debug.h +++ b/client/debug.h @@ -31,6 +31,7 @@ #include <QListWidget> #include <QCloseEvent> #include <QTimer> +#include <QString> typedef enum { _debug, @@ -56,11 +57,14 @@ private slots: void error_toggled(bool); void warning_toggled(bool); void log_toggled(bool); + void filter_changed(QString); private: QListWidget *lst; QTimer timer; + QString filter; + bool show_debug; bool show_error; bool show_warning; |