diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-20 02:08:48 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-20 02:08:48 -0500 |
commit | a010aa11a559ba22c94dd3426fd1f313ee0ac667 (patch) | |
tree | e5fafac18da04f1c7f6bf7722ec71c428eaba250 /windows/guildsettingswindow.hpp | |
parent | 5d1db982cbbb375427b9c4475d5e347c5702b6df (diff) | |
download | abaddon-portaudio-a010aa11a559ba22c94dd3426fd1f313ee0ac667.tar.gz abaddon-portaudio-a010aa11a559ba22c94dd3426fd1f313ee0ac667.zip |
add bans to guild settings, tweak some other things
Diffstat (limited to 'windows/guildsettingswindow.hpp')
-rw-r--r-- | windows/guildsettingswindow.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/windows/guildsettingswindow.hpp b/windows/guildsettingswindow.hpp index 1904216..dc189fb 100644 --- a/windows/guildsettingswindow.hpp +++ b/windows/guildsettingswindow.hpp @@ -2,6 +2,7 @@ #include <gtkmm.h> #include "../discord/snowflake.hpp" #include "guildsettings/infopane.hpp" +#include "guildsettings/banspane.hpp" class GuildSettingsWindow : public Gtk::Window { public: @@ -13,6 +14,7 @@ private: Gtk::StackSwitcher m_switcher; GuildSettingsInfoPane m_pane_info; + GuildSettingsBansPane m_pane_bans; Snowflake GuildID; }; |