diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-03-22 20:29:05 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-03-22 20:29:05 +0000 |
commit | 10d8e9151d75c1ef81740d56b703fc147086f175 (patch) | |
tree | 373806d5cb483df0e40221df269f37b37104a5a8 /include/modules.h | |
parent | 406010998eee82cebe6467c4f64e446ff8b79e5f (diff) |
Remove channel argument from OnSendWhoLine, this information is already available in params[0]
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12650 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h index d889d734d..102ed180b 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1275,10 +1275,9 @@ class CoreExport Module : public classbase, public usecountbase * @param source The user running the /WHO query * @param params The parameters to the /WHO query * @param user The user that this line of the query is about - * @param channel The channel being queried (or NULL if not a channel query) * @param line The raw line to send; modifiable, if empty no line will be returned. */ - virtual void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Channel* channel, std::string& line); + virtual void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, std::string& line); }; |