diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-03-31 21:32:41 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-03-31 21:32:41 -0400 |
commit | b7906eb918d0df1fa1508a77732113ca94056e4e (patch) | |
tree | fa533b611822b25924d4e2947bcf90307c6e5cff /src/components | |
parent | 1367e162c0581bdea7ec1d2129b18e70d7d43d2b (diff) | |
parent | fda687eaa8b33899648e97798a7fbcaa9edda12b (diff) | |
download | abaddon-portaudio-b7906eb918d0df1fa1508a77732113ca94056e4e.tar.gz abaddon-portaudio-b7906eb918d0df1fa1508a77732113ca94056e4e.zip |
Merge branch 'master' into stages
Diffstat (limited to 'src/components')
4 files changed, 5 insertions, 0 deletions
diff --git a/src/components/channellist/channellisttree.hpp b/src/components/channellist/channellisttree.hpp index 3841e3c..f61cea7 100644 --- a/src/components/channellist/channellisttree.hpp +++ b/src/components/channellist/channellisttree.hpp @@ -9,6 +9,7 @@ #include <gtkmm/treemodel.h> #include <gtkmm/treestore.h> #include <gtkmm/treemodelfilter.h> +#include <gtkmm/treemodelsort.h> #include <gtkmm/treeview.h> #include <sigc++/sigc++.h> #include "discord/discord.hpp" diff --git a/src/components/channellist/classic/guildlist.cpp b/src/components/channellist/classic/guildlist.cpp index d756c6f..6a6e3d4 100644 --- a/src/components/channellist/classic/guildlist.cpp +++ b/src/components/channellist/classic/guildlist.cpp @@ -1,6 +1,7 @@ #include "guildlist.hpp" #include "abaddon.hpp" +#include "util.hpp" #include "guildlistfolderitem.hpp" class GuildListDMsButton : public Gtk::EventBox { diff --git a/src/components/channellist/classic/guildlist.hpp b/src/components/channellist/classic/guildlist.hpp index 72e88e8..2d745d3 100644 --- a/src/components/channellist/classic/guildlist.hpp +++ b/src/components/channellist/classic/guildlist.hpp @@ -1,5 +1,6 @@ #pragma once #include <gtkmm/listbox.h> +#include <gtkmm/menu.h> #include "discord/snowflake.hpp" #include "discord/usersettings.hpp" diff --git a/src/components/channellist/classic/guildlistguilditem.hpp b/src/components/channellist/classic/guildlistguilditem.hpp index 6e2b241..d198e72 100644 --- a/src/components/channellist/classic/guildlistguilditem.hpp +++ b/src/components/channellist/classic/guildlistguilditem.hpp @@ -4,6 +4,8 @@ #include <gtkmm/image.h> #include "discord/guild.hpp" +struct Message; +struct MessageAckData; class GuildListGuildItem : public Gtk::EventBox { public: GuildListGuildItem(const GuildData &guild); |