diff options
| author | 2014-01-25 12:40:21 +0100 | |
|---|---|---|
| committer | 2014-01-25 12:40:21 +0100 | |
| commit | 1db0e984be491125d8f954aa22f17cad1d4c453f (patch) | |
| tree | e60fea152f40c36b975472725f40eb89c76cf7fd /src/modules.cpp | |
| parent | Omit the server name internally when building a /STATS reply and prepend it l... (diff) | |
| download | inspircd++-1db0e984be491125d8f954aa22f17cad1d4c453f.tar.gz inspircd++-1db0e984be491125d8f954aa22f17cad1d4c453f.tar.bz2 inspircd++-1db0e984be491125d8f954aa22f17cad1d4c453f.zip | |
Add Channel* parameter to OnSendWhoLine
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 22047ce81..245ad5345 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -155,7 +155,7 @@ void Module::OnRunTestSuite() { DetachEvent(I_OnRunTestSuite); } void Module::OnNamesListItem(User*, Membership*, std::string&, std::string&) { DetachEvent(I_OnNamesListItem); } ModResult Module::OnNumeric(User*, unsigned int, const std::string&) { DetachEvent(I_OnNumeric); return MOD_RES_PASSTHRU; } ModResult Module::OnAcceptConnection(int, ListenSocket*, irc::sockets::sockaddrs*, irc::sockets::sockaddrs*) { DetachEvent(I_OnAcceptConnection); return MOD_RES_PASSTHRU; } -void Module::OnSendWhoLine(User*, const std::vector<std::string>&, User*, std::string&) { DetachEvent(I_OnSendWhoLine); } +void Module::OnSendWhoLine(User*, const std::vector<std::string>&, User*, Channel*, std::string&) { DetachEvent(I_OnSendWhoLine); } void Module::OnSetUserIP(LocalUser*) { DetachEvent(I_OnSetUserIP); } ServiceProvider::ServiceProvider(Module* Creator, const std::string& Name, ServiceType Type) |
