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_nonicks.cpp | |
| parent | Remove typedef UserMembIter, use Channel::MemberMap::iterator instead (diff) | |
Rename UserChanList to User::ChanList, remove UCListIter
Diffstat (limited to 'src/modules/m_nonicks.cpp')
| -rw-r--r-- | src/modules/m_nonicks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_nonicks.cpp b/src/modules/m_nonicks.cpp index 5a45bbb4a..63815f2bf 100644 --- a/src/modules/m_nonicks.cpp +++ b/src/modules/m_nonicks.cpp @@ -48,7 +48,7 @@ class ModuleNoNickChange : public Module ModResult OnUserPreNick(LocalUser* user, const std::string& newnick) CXX11_OVERRIDE { - for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++) + for (User::ChanList::iterator i = user->chans.begin(); i != user->chans.end(); i++) { Channel* curr = (*i)->chan; |
