aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_delaymsg.cpp
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/modules/m_delaymsg.cpp
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/modules/m_delaymsg.cpp')
-rw-r--r--src/modules/m_delaymsg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_delaymsg.cpp b/src/modules/m_delaymsg.cpp
index 3384e1107..e782b807a 100644
--- a/src/modules/m_delaymsg.cpp
+++ b/src/modules/m_delaymsg.cpp
@@ -73,7 +73,7 @@ void DelayMsgMode::OnUnset(User* source, Channel* chan)
/*
* Clean up metadata
*/
- const UserMembList& users = chan->GetUsers();
+ const Channel::MemberMap& users = chan->GetUsers();
for (UserMembCIter n = users.begin(); n != users.end(); ++n)
jointime.set(n->second, 0);
}