diff options
| author | 2014-07-14 16:24:59 +0200 | |
|---|---|---|
| committer | 2014-07-14 16:24:59 +0200 | |
| commit | 46c97a8db770d637cf8e11fa8b178a32c60cdada (patch) | |
| tree | 4022e05800efba2dd0a31b6363eed0f0bf065671 /src/modules/m_check.cpp | |
| parent | Remove typedef UserMembIter, use Channel::MemberMap::iterator instead (diff) | |
Rename UserChanList to User::ChanList, remove UCListIter
Diffstat (limited to 'src/modules/m_check.cpp')
| -rw-r--r-- | src/modules/m_check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 75c6a4399..cbdb1d528 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -190,7 +190,7 @@ class CommandCheck : public Command else user->SendText(checkstr + " onip " + targuser->GetIPString()); - for (UCListIter i = targuser->chans.begin(); i != targuser->chans.end(); i++) + for (User::ChanList::iterator i = targuser->chans.begin(); i != targuser->chans.end(); i++) { Membership* memb = *i; Channel* c = memb->chan; |
