diff options
Diffstat (limited to 'Applications/ChanViewer/ThreadCatalogModel.h')
-rw-r--r-- | Applications/ChanViewer/ThreadCatalogModel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Applications/ChanViewer/ThreadCatalogModel.h b/Applications/ChanViewer/ThreadCatalogModel.h index d39c232d06..a2b03cddde 100644 --- a/Applications/ChanViewer/ThreadCatalogModel.h +++ b/Applications/ChanViewer/ThreadCatalogModel.h @@ -25,8 +25,11 @@ public: virtual GVariant data(const GModelIndex&, Role = Role::Display) const override; virtual void update() override; + void set_board(const String&); + private: ThreadCatalogModel(); + String m_board { "g" }; JsonArray m_catalog; }; |