diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-05-14 00:27:58 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-05-14 00:27:58 -0400 |
commit | 95eb6646415d859931532e7b22967b7c68ddb02b (patch) | |
tree | da80f5de4607ca4c280581f887a543522b760595 /windows/mainwindow.hpp | |
parent | 858fd8ce626d3f3c5ef3c4349612e520f07eff6a (diff) | |
download | abaddon-portaudio-95eb6646415d859931532e7b22967b7c68ddb02b.tar.gz abaddon-portaudio-95eb6646415d859931532e7b22967b7c68ddb02b.zip |
friends: friends list is now in main content stack
Diffstat (limited to 'windows/mainwindow.hpp')
-rw-r--r-- | windows/mainwindow.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/windows/mainwindow.hpp b/windows/mainwindow.hpp index f877018..544e9a3 100644 --- a/windows/mainwindow.hpp +++ b/windows/mainwindow.hpp @@ -2,6 +2,7 @@ #include "../components/channels.hpp" #include "../components/chatwindow.hpp" #include "../components/memberlist.hpp" +#include "../components/friendslist.hpp" #include <gtkmm.h> class MainWindow : public Gtk::Window { @@ -74,6 +75,7 @@ protected: ChannelList m_channel_list; ChatWindow m_chat; MemberList m_members; + FriendsList m_friends; Gtk::Stack m_content_stack; |