diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-01-25 12:40:21 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-01-25 12:40:21 +0100 |
commit | 1db0e984be491125d8f954aa22f17cad1d4c453f (patch) | |
tree | e60fea152f40c36b975472725f40eb89c76cf7fd /src/modules/m_hideoper.cpp | |
parent | f3f8eae2cd68d8ce2c57f5df58db5833fb659cf5 (diff) |
Add Channel* parameter to OnSendWhoLine
Diffstat (limited to 'src/modules/m_hideoper.cpp')
-rw-r--r-- | src/modules/m_hideoper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_hideoper.cpp b/src/modules/m_hideoper.cpp index a7a701697..de4a27cae 100644 --- a/src/modules/m_hideoper.cpp +++ b/src/modules/m_hideoper.cpp @@ -63,7 +63,7 @@ class ModuleHideOper : public Module return MOD_RES_PASSTHRU; } - void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, std::string& line) CXX11_OVERRIDE + void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Channel* chan, std::string& line) CXX11_OVERRIDE { if (user->IsModeSet(hm) && !source->HasPrivPermission("users/auspex")) { |