summaryrefslogtreecommitdiff
path: root/src/components/channellist
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2024-03-28 21:54:20 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2024-03-28 21:54:20 -0400
commit7b63bfea23edb66e97ec4b2c276c1dbdf15c3849 (patch)
tree85b0764548f820ba722e3f37938c77b83bec6395 /src/components/channellist
parentf928d751d8c7e0547f5f48d70677683114f9c5bb (diff)
downloadabaddon-portaudio-7b63bfea23edb66e97ec4b2c276c1dbdf15c3849.tar.gz
abaddon-portaudio-7b63bfea23edb66e97ec4b2c276c1dbdf15c3849.zip
includes
Diffstat (limited to 'src/components/channellist')
-rw-r--r--src/components/channellist/channellisttree.hpp1
-rw-r--r--src/components/channellist/classic/guildlist.cpp1
-rw-r--r--src/components/channellist/classic/guildlist.hpp1
-rw-r--r--src/components/channellist/classic/guildlistguilditem.hpp2
4 files changed, 5 insertions, 0 deletions
diff --git a/src/components/channellist/channellisttree.hpp b/src/components/channellist/channellisttree.hpp
index 136522b..4eebbdb 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);