summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2020-08-29 16:38:52 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2020-08-29 16:38:52 -0400
commit4b637b6ff20784ffde41c521be0fd7199f4a5a9b (patch)
tree2d3585f7b3c8b24d0efb99de37863881f2ab3557 /components
parent713ed0f9271bfd9249809940cf214d600adaecab (diff)
downloadabaddon-portaudio-4b637b6ff20784ffde41c521be0fd7199f4a5a9b.tar.gz
abaddon-portaudio-4b637b6ff20784ffde41c521be0fd7199f4a5a9b.zip
crash fixes
Diffstat (limited to 'components')
-rw-r--r--components/channels.cpp1
-rw-r--r--components/channels.hpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/components/channels.cpp b/components/channels.cpp
index adaa11d..b3af191 100644
--- a/components/channels.cpp
+++ b/components/channels.cpp
@@ -160,6 +160,7 @@ void ChannelList::SetListingFromGuildsInternal() {
AddPrivateChannels();
// map each category to its channels
+
std::unordered_map<Snowflake, std::vector<const ChannelData *>> cat_to_channels;
std::unordered_map<Snowflake, std::vector<const ChannelData *>> orphan_channels;
for (const auto &[gid, guild] : *guilds) {
diff --git a/components/channels.hpp b/components/channels.hpp
index b41dc63..83b242c 100644
--- a/components/channels.hpp
+++ b/components/channels.hpp
@@ -53,7 +53,7 @@ protected:
std::queue<DiscordClient::Guilds_t> m_update_queue;
void AddPrivateChannels(); // retard moment
void SetListingFromGuildsInternal();
- void AttachMenuHandler(Gtk::ListBoxRow* row);
+ void AttachMenuHandler(Gtk::ListBoxRow *row);
Abaddon *m_abaddon = nullptr;
};