diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-09-06 21:28:07 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-09-06 21:28:07 -0400 |
commit | 66cc4b3cc7c7170bd7ff0347ed377d317dcdce91 (patch) | |
tree | 4c25bc8cdb68a482aac45e4417c8caca422ba7bb /components/channels.hpp | |
parent | 10e547c4947849647463c6f302edbbefc46aac80 (diff) | |
download | abaddon-portaudio-66cc4b3cc7c7170bd7ff0347ed377d317dcdce91.tar.gz abaddon-portaudio-66cc4b3cc7c7170bd7ff0347ed377d317dcdce91.zip |
refactor (store)
Diffstat (limited to 'components/channels.hpp')
-rw-r--r-- | components/channels.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/channels.hpp b/components/channels.hpp index 83b242c..2747724 100644 --- a/components/channels.hpp +++ b/components/channels.hpp @@ -11,7 +11,7 @@ class ChannelList { public: ChannelList(); Gtk::Widget *GetRoot() const; - void SetListingFromGuilds(const DiscordClient::Guilds_t &guilds); + void SetListingFromGuilds(const DiscordClient::guilds_type &guilds); void ClearListing(); void SetAbaddon(Abaddon *ptr); @@ -50,7 +50,7 @@ protected: Glib::Dispatcher m_update_dispatcher; mutable std::mutex m_update_mutex; - std::queue<DiscordClient::Guilds_t> m_update_queue; + std::queue<DiscordClient::guilds_type> m_update_queue; void AddPrivateChannels(); // retard moment void SetListingFromGuildsInternal(); void AttachMenuHandler(Gtk::ListBoxRow *row); |