diff options
| author | 2010-04-16 14:43:30 -0500 | |
|---|---|---|
| committer | 2010-08-03 17:32:42 -0400 | |
| commit | 6286f2c2415dee69c91ae4820a06e5b0b961671b (patch) | |
| tree | 21b9ed5ef94e57868f9bb19a23ca0339619fb7a9 /src/modules.cpp | |
| parent | Fix cloak key being misread in 2.0 cloaking modes (diff) | |
Get rid of char* argument for channel name
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 288d9ea00..cdce0db41 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -81,7 +81,7 @@ void Module::OnPostJoin(Membership*) { } void Module::OnUserPart(Membership*, std::string&, CUList&) { } void Module::OnModuleRehash(User*, const std::string&) { } void Module::OnRehash(User*) { } -ModResult Module::OnUserPreJoin(User*, Channel*, const char*, std::string&, const std::string&) { return MOD_RES_PASSTHRU; } +ModResult Module::OnUserPreJoin(User*, Channel*, const std::string&, std::string&, const std::string&) { return MOD_RES_PASSTHRU; } void Module::OnMode(User*, Extensible*, const irc::modestacker&) { } void Module::OnOper(User*, const std::string&) { } void Module::OnPostOper(User*, const std::string&, const std::string &) { } |
