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/m_hideoper.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/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")) { |
