diff options
| author | 2008-02-18 17:37:35 +0000 | |
|---|---|---|
| committer | 2008-02-18 17:37:35 +0000 | |
| commit | e21ee18e62aecee6d27a0f9ba497a52688cb8349 (patch) | |
| tree | 3c5087d5abd8212aa481eb82f44af3560632825c /src/modules/m_delayjoin.cpp | |
| parent | Fix this first, as this actually has use of the new parameter same as cmode_b... (diff) | |
Phew. Fix a bunch of method sigs to stop warnings.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8966 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_delayjoin.cpp')
| -rw-r--r-- | src/modules/m_delayjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_delayjoin.cpp b/src/modules/m_delayjoin.cpp index 1077e65a7..0bf9595e4 100644 --- a/src/modules/m_delayjoin.cpp +++ b/src/modules/m_delayjoin.cpp @@ -23,7 +23,7 @@ class DelayJoinMode : public ModeHandler public: DelayJoinMode(InspIRCd* Instance, Module* Parent) : ModeHandler(Instance, 'D', 0, 0, false, MODETYPE_CHANNEL, false), Creator(Parent) { } - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding) + ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool) { if (channel->IsModeSet('D') != adding) { |
