summaryrefslogtreecommitdiff
path: root/windows/threadswindow.cpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-11-18 01:03:35 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2021-11-18 01:03:35 -0500
commit9c285a09e50ce9d4b786c9f28402e94a9f4fb418 (patch)
tree78701d71461b48e3f8083b45b1f420362950ef0a /windows/threadswindow.cpp
parent1f68da6b77c82f462472385a8e31a578c4c5caed (diff)
parent9d21df8e1bca9ccfa1bcfcde3bc8f35473866166 (diff)
downloadabaddon-portaudio-9c285a09e50ce9d4b786c9f28402e94a9f4fb418.tar.gz
abaddon-portaudio-9c285a09e50ce9d4b786c9f28402e94a9f4fb418.zip
Merge branch 'master' of https://github.com/uowuo/abaddon into msys
Diffstat (limited to 'windows/threadswindow.cpp')
-rw-r--r--windows/threadswindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/windows/threadswindow.cpp b/windows/threadswindow.cpp
index 1bfb326..b4cbac7 100644
--- a/windows/threadswindow.cpp
+++ b/windows/threadswindow.cpp
@@ -3,11 +3,11 @@
ThreadsWindow::ThreadsWindow(const ChannelData &channel)
: m_channel_id(channel.ID)
+ , m_filter_public(m_group, "Public")
+ , m_filter_private(m_group, "Private")
, m_box(Gtk::ORIENTATION_VERTICAL)
, m_active(channel, sigc::mem_fun(*this, &ThreadsWindow::ListFilterFunc))
- , m_archived(channel, sigc::mem_fun(*this, &ThreadsWindow::ListFilterFunc))
- , m_filter_public(m_group, "Public")
- , m_filter_private(m_group, "Private") {
+ , m_archived(channel, sigc::mem_fun(*this, &ThreadsWindow::ListFilterFunc)) {
set_name("threads-window");
set_default_size(450, 375);
set_title("#" + *channel.Name + " - Threads");