aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_hidechans.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2016-02-25 16:27:30 +0100
committerGravatar Attila Molnar2016-02-25 16:27:30 +0100
commit0c42bcde16c3141ccd4bb8c5f7b22d65cc8e1909 (patch)
treef80ce6d1bd6346c9d9b4daa5350e6703e2738808 /src/modules/m_hidechans.cpp
parentConvert WriteNumeric() calls to pass the parameters of the numeric as method ... (diff)
downloadinspircd++-0c42bcde16c3141ccd4bb8c5f7b22d65cc8e1909.tar.gz
inspircd++-0c42bcde16c3141ccd4bb8c5f7b22d65cc8e1909.tar.bz2
inspircd++-0c42bcde16c3141ccd4bb8c5f7b22d65cc8e1909.zip
Convert WhoisContext::SendLine() calls to pass the parameters of the numeric as method parameters
Diffstat (limited to 'src/modules/m_hidechans.cpp')
-rw-r--r--src/modules/m_hidechans.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_hidechans.cpp b/src/modules/m_hidechans.cpp
index 431b7b968..08caae6b2 100644
--- a/src/modules/m_hidechans.cpp
+++ b/src/modules/m_hidechans.cpp
@@ -49,14 +49,14 @@ class ModuleHideChans : public Module, public Whois::LineEventListener
AffectsOpers = ServerInstance->Config->ConfValue("hidechans")->getBool("affectsopers");
}
- ModResult OnWhoisLine(Whois::Context& whois, unsigned int& numeric, std::string& text) CXX11_OVERRIDE
+ ModResult OnWhoisLine(Whois::Context& whois, Numeric::Numeric& numeric) CXX11_OVERRIDE
{
/* always show to self */
if (whois.IsSelfWhois())
return MOD_RES_PASSTHRU;
/* don't touch anything except 319 */
- if (numeric != 319)
+ if (numeric.GetNumeric() != 319)
return MOD_RES_PASSTHRU;
/* don't touch if -I */