diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-27 09:03:13 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-27 09:03:13 +0000 |
commit | ee15a808a1e0d36167f80d9f96147103ba5583de (patch) | |
tree | 0756c69cfb8c8d09b0abc29aa302aeea81a59af5 /src/channel.cpp | |
parent | 4d546730d97828bfed5586c1d50527c7ff5e5c79 (diff) | |
download | mana-client-ee15a808a1e0d36167f80d9f96147103ba5583de.tar.gz mana-client-ee15a808a1e0d36167f80d9f96147103ba5583de.tar.bz2 mana-client-ee15a808a1e0d36167f80d9f96147103ba5583de.tar.xz mana-client-ee15a808a1e0d36167f80d9f96147103ba5583de.zip |
Made it compile with GCC 4.3
Diffstat (limited to 'src/channel.cpp')
-rw-r--r-- | src/channel.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/channel.cpp b/src/channel.cpp index 170dbf5e..3204b3b2 100644 --- a/src/channel.cpp +++ b/src/channel.cpp @@ -40,12 +40,7 @@ void Channel::setName(const std::string &channelName) mName = channelName; } -const short Channel::getId() const -{ - return mID; -} - -const int Channel::getUserListSize() const +int Channel::getUserListSize() const { return userList.size(); } |