aboutsummaryrefslogtreecommitdiffstats
path: root/src/coremods
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-07-14 16:10:12 +0200
committerGravatar Attila Molnar2014-07-14 16:10:12 +0200
commit04ece67c3d8534f74a3d75ec77378cb57a9c044e (patch)
tree41db09412bfd539c977500c93b5ddc2d210be344 /src/coremods
parentChange return type of Channel::GetUsers() to reference from pointer as it is ... (diff)
Rename UserMembList to Channel::MemberMap, switch all code to use it
Diffstat (limited to 'src/coremods')
-rw-r--r--src/coremods/core_who.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_who.cpp b/src/coremods/core_who.cpp
index d39c07520..6014401d8 100644
--- a/src/coremods/core_who.cpp
+++ b/src/coremods/core_who.cpp
@@ -325,7 +325,7 @@ CmdResult CommandWho::Handle (const std::vector<std::string>& parameters, User *
bool inside = ch->HasUser(user);
/* who on a channel. */
- const UserMembList& cu = ch->GetUsers();
+ const Channel::MemberMap& cu = ch->GetUsers();
for (UserMembCIter i = cu.begin(); i != cu.end(); ++i)
{
/* None of this applies if we WHO ourselves */