]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - taskfiltermodel.h
New upstream version 2.9.22
[sven/vym.git] / taskfiltermodel.h
diff --git a/taskfiltermodel.h b/taskfiltermodel.h
deleted file mode 100644 (file)
index 6e02327..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef TASKFILTERMODEL_H
-#define TASKFILTERMODEL_H
-
-#include <QSortFilterProxyModel>
-
-class TaskFilterModel:public QSortFilterProxyModel
-{
-public:
-    void setFilter (bool b);
-    void setFilterNew (bool b);
-    void setMapFilter (const QString &s);
-    void setFilterFlags (bool b);
-protected:    
-    bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
-private:
-    bool useFilter;
-    QString mapFilter;
-    bool filterNew;
-    bool filterFlags;
-};
-
-#endif