diff options
Diffstat (limited to 'components/channels.hpp')
-rw-r--r-- | components/channels.hpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/components/channels.hpp b/components/channels.hpp index 3e9d9e0..69f1f77 100644 --- a/components/channels.hpp +++ b/components/channels.hpp @@ -118,17 +118,18 @@ private: class ChannelList : public Gtk::ScrolledWindow { public: ChannelList(); + void UpdateListing(); - void UpdateNewGuild(Snowflake id); + void SetActiveChannel(Snowflake id); + +protected: + void UpdateNewGuild(const GuildData &guild); void UpdateRemoveGuild(Snowflake id); void UpdateRemoveChannel(Snowflake id); void UpdateChannel(Snowflake id); void UpdateCreateChannel(Snowflake id); void UpdateGuild(Snowflake id); - void SetActiveChannel(Snowflake id); - -protected: Gtk::TreeView m_view; class ModelColumns : public Gtk::TreeModel::ColumnRecord { |