connect and heartbeat
This commit is contained in:
12
components/channels.cpp
Normal file
12
components/channels.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "channels.hpp"
|
||||
|
||||
ChannelList::ChannelList() {
|
||||
m_main = Gtk::manage(new Gtk::ScrolledWindow);
|
||||
m_list = Gtk::manage(new Gtk::ListBox);
|
||||
|
||||
m_main->add(*m_list);
|
||||
}
|
||||
|
||||
Gtk::Widget* ChannelList::GetRoot() const {
|
||||
return m_main;
|
||||
}
|
Reference in New Issue
Block a user