diff options
| author | 2012-11-21 00:15:13 +0100 | |
|---|---|---|
| committer | 2012-11-29 23:41:22 +0100 | |
| commit | a589577b68cb84bc877ecdd4c0f9cb84a1581ddd (patch) | |
| tree | 37a4f52f9bcac855d7fa2198f991a2fc919ea738 /src/commands/cmd_wallops.cpp | |
| parent | m_cgiirc Fix wrong announcement when the host in WEBIRC is too long (diff) | |
Add a typedef for LocalUserList
Diffstat (limited to 'src/commands/cmd_wallops.cpp')
| -rw-r--r-- | src/commands/cmd_wallops.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_wallops.cpp b/src/commands/cmd_wallops.cpp index 0effa3c5a..198997a95 100644 --- a/src/commands/cmd_wallops.cpp +++ b/src/commands/cmd_wallops.cpp @@ -45,7 +45,7 @@ CmdResult CommandWallops::Handle (const std::vector<std::string>& parameters, Us std::string wallop("WALLOPS :"); wallop.append(parameters[0]); - for (std::vector<LocalUser*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++) + for (LocalUserList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++) { User* t = *i; if (t->IsModeSet('w')) |
