diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-05-25 19:53:21 +0200 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-05-25 19:54:15 +0200 |
| commit | cf1bbdd13e0db8856df672c367d3ec1610f6c556 (patch) | |
| tree | 461a6b7623a186502f00b07df689ffebfea620b0 /src/filterlist.h | |
| parent | a721347fd130fcab19f2709892093f087bfac19e (diff) | |
Switch to using the ModDataContent feature from the game plugin.
Diffstat (limited to 'src/filterlist.h')
| -rw-r--r-- | src/filterlist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/filterlist.h b/src/filterlist.h index b0ebc9a4..ba9dc71c 100644 --- a/src/filterlist.h +++ b/src/filterlist.h @@ -7,13 +7,14 @@ namespace Ui { class MainWindow; }; class CategoryFactory; class Settings; +class OrganizerCore; class FilterList : public QObject { Q_OBJECT; public: - FilterList(Ui::MainWindow* ui, CategoryFactory& factory); + FilterList(Ui::MainWindow* ui, OrganizerCore *organizer, CategoryFactory& factory); void restoreState(const Settings& s); void saveState(Settings& s) const; @@ -31,6 +32,7 @@ private: class CriteriaItem; Ui::MainWindow* ui; + OrganizerCore* m_Organizer; CategoryFactory& m_factory; bool onClick(QMouseEvent* e); |
