diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-14 16:24:59 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-14 16:24:59 +0200 |
commit | 46c97a8db770d637cf8e11fa8b178a32c60cdada (patch) | |
tree | 4022e05800efba2dd0a31b6363eed0f0bf065671 /src/modules/m_spanningtree | |
parent | 63601e946e77f11835cf9cbb87c55fe41e0b12bb (diff) |
Rename UserChanList to User::ChanList, remove UCListIter
Diffstat (limited to 'src/modules/m_spanningtree')
-rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index e10781198..3393539cc 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -72,7 +72,7 @@ namespace for (LocalUserList::iterator i = list.begin(); i != list.end(); ++i) { LocalUser* user = *i; - for (UCListIter j = user->chans.begin(); j != user->chans.end(); ++j) + for (User::ChanList::iterator j = user->chans.begin(); j != user->chans.end(); ++j) (*j)->id = 0; } } |