diff options
| author | 2007-05-03 22:05:56 +0000 | |
|---|---|---|
| committer | 2007-05-03 22:05:56 +0000 | |
| commit | 2d659114b7c8d91c70d327259d0be63de006ec8c (patch) | |
| tree | cfd7ace25e4857c4d2f8094ac4d03b7a5980db5b /src/modules/extra/m_httpclienttest.cpp | |
| parent | Fix for new api (diff) | |
Fix broken modules (broken due to api change)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6860 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_httpclienttest.cpp')
| -rw-r--r-- | src/modules/extra/m_httpclienttest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_httpclienttest.cpp b/src/modules/extra/m_httpclienttest.cpp index 54ebe7e3b..9e43379c1 100644 --- a/src/modules/extra/m_httpclienttest.cpp +++ b/src/modules/extra/m_httpclienttest.cpp @@ -41,7 +41,7 @@ public: return Version(1,0,0,1,VF_VENDOR,API_VERSION); } - virtual void OnUserJoin(userrec* user, chanrec* channel) + virtual void OnUserJoin(userrec* user, chanrec* channel, bool &silent) { // method called when a user joins a channel @@ -68,7 +68,7 @@ public: return NULL; } - virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage) + virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage, bool &silent) { } |
