summaryrefslogtreecommitdiff
path: root/windows/profile/mutualfriendspane.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'windows/profile/mutualfriendspane.hpp')
-rw-r--r--windows/profile/mutualfriendspane.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/windows/profile/mutualfriendspane.hpp b/windows/profile/mutualfriendspane.hpp
deleted file mode 100644
index ef41aa6..0000000
--- a/windows/profile/mutualfriendspane.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-#include <gtkmm.h>
-#include "discord/objects.hpp"
-
-class MutualFriendItem : public Gtk::Box {
-public:
- MutualFriendItem(const UserData &user);
-
-private:
- Gtk::Image m_avatar;
- Gtk::Label m_name;
-};
-
-class MutualFriendsPane : public Gtk::ScrolledWindow {
-public:
- MutualFriendsPane(Snowflake id);
-
- Snowflake UserID;
-
-private:
- void OnMap();
-
- bool m_requested = false;
-
- void OnFetchRelationships(const std::vector<UserData> &users);
-
- Gtk::ListBox m_list;
-};