summaryrefslogtreecommitdiff
path: root/windows/profilewindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'windows/profilewindow.hpp')
-rw-r--r--windows/profilewindow.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/windows/profilewindow.hpp b/windows/profilewindow.hpp
index a5627d3..7b22829 100644
--- a/windows/profilewindow.hpp
+++ b/windows/profilewindow.hpp
@@ -3,6 +3,7 @@
#include "../discord/snowflake.hpp"
#include "profile/userinfopane.hpp"
#include "profile/mutualguildspane.hpp"
+#include "profile/mutualfriendspane.hpp"
class ProfileWindow : public Gtk::Window {
public:
@@ -14,6 +15,7 @@ public:
private:
void OnFetchProfile(const UserProfileData &data);
+ void OnFetchRelationships(const std::vector<UserData> &data);
Gtk::Box m_main;
Gtk::Box m_upper;
@@ -28,4 +30,5 @@ private:
ProfileUserInfoPane m_pane_info;
UserMutualGuildsPane m_pane_guilds;
+ MutualFriendsPane m_pane_friends;
};