diff -r 2c42ad499ac3 -r 959bd133cd1a treeeditor.h --- a/treeeditor.h Thu Oct 01 11:48:58 2009 +0000 +++ b/treeeditor.h Thu Oct 01 13:23:20 2009 +0000 @@ -2,6 +2,7 @@ #define TREEEDITOR_H #include +#include class VymModel; @@ -16,13 +17,16 @@ TreeEditor(VymModel *m); ~TreeEditor(); +public slots: + void setSortFilter (QString f); + private slots: void cursorUp(); void cursorDown(); private: VymModel *model; - VymModel *proxyModel; + QSortFilterProxyModel *proxyModel; }; #endif