diff options
| author | 2014-07-14 16:10:12 +0200 | |
|---|---|---|
| committer | 2014-07-14 16:10:12 +0200 | |
| commit | 04ece67c3d8534f74a3d75ec77378cb57a9c044e (patch) | |
| tree | 41db09412bfd539c977500c93b5ddc2d210be344 /src/modules.cpp | |
| parent | Change 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.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 62bdedcfd..f29ab6bbb 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -391,7 +391,7 @@ void ModuleManager::DoSafeUnload(Module* mod) ++c; mod->OnCleanup(TYPE_CHANNEL, chan); chan->doUnhookExtensions(items); - const UserMembList& users = chan->GetUsers(); + const Channel::MemberMap& users = chan->GetUsers(); for (UserMembCIter mi = users.begin(); mi != users.end(); ++mi) mi->second->doUnhookExtensions(items); } |
