mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:57:44 +00:00
IRClient: Add a member list to channel views.
This commit is contained in:
parent
08c15be0ca
commit
491aa112ab
7 changed files with 115 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "IRCChannel.h"
|
||||
#include "IRCClient.h"
|
||||
#include "IRCChannelMemberListModel.h"
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
|
||||
|
@ -8,6 +9,7 @@ IRCChannel::IRCChannel(IRCClient& client, const String& name)
|
|||
, m_name(name)
|
||||
, m_log(IRCLogBuffer::create())
|
||||
{
|
||||
m_member_model = new IRCChannelMemberListModel(*this);
|
||||
}
|
||||
|
||||
IRCChannel::~IRCChannel()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue