summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircchannel.cpp
authorwazlaf <wazlaf>2002-09-20 23:28:14 (UTC)
committer wazlaf <wazlaf>2002-09-20 23:28:14 (UTC)
commit912092425248f7fc5155b4c7c46b7d00ec2676bc (patch) (unidiff)
tree5bbf746e83b2dffad89542c42031a573c34da751 /noncore/net/opieirc/ircchannel.cpp
parentcd3df897c1b0ed93c2be3ab411011a0bdfe88bf9 (diff)
downloadopie-912092425248f7fc5155b4c7c46b7d00ec2676bc.zip
opie-912092425248f7fc5155b4c7c46b7d00ec2676bc.tar.gz
opie-912092425248f7fc5155b4c7c46b7d00ec2676bc.tar.bz2
support for client commands (only /join implemented so far), crash bugfix, fixed 2 leaks, server browser now includes a channel list
Diffstat (limited to 'noncore/net/opieirc/ircchannel.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircchannel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircchannel.cpp b/noncore/net/opieirc/ircchannel.cpp
index 71ec03b..9814a26 100644
--- a/noncore/net/opieirc/ircchannel.cpp
+++ b/noncore/net/opieirc/ircchannel.cpp
@@ -3,12 +3,17 @@
3 3
4IRCChannel::IRCChannel(QString channelname) { 4IRCChannel::IRCChannel(QString channelname) {
5 m_hasPeople = FALSE; 5 m_hasPeople = FALSE;
6 m_channelname = channelname; 6 m_channelname = channelname;
7} 7}
8 8
9IRCChannel::~IRCChannel() {
10 /* We want this to get deleted */
11 m_people.setAutoDelete(TRUE);
12}
13
9QString IRCChannel::channelname() { 14QString IRCChannel::channelname() {
10 return m_channelname; 15 return m_channelname;
11} 16}
12 17
13bool IRCChannel::hasPeople() { 18bool IRCChannel::hasPeople() {
14 return m_hasPeople; 19 return m_hasPeople;