diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-04 17:55:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-04 17:55:06 +0000 |
commit | 4c0a10e109bbbc64e74579c6b0d382ae6ee1acdf (patch) | |
tree | 2093d139b1ec493d3779a3a515a82864d4fc39ba | |
parent | dd48c67fb3251eec9ee54f7392b8134310eec808 (diff) |
Missing Module:: from OnWallops
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2157 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 984f9f5be..a16cc0182 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -367,7 +367,7 @@ void Module::OnGetServerDescription(std::string servername,std::string &descrip void Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { }; void Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { }; void Module::ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline) { }; -void OnWallops(userrec* user, std::string text) { }; +void Module::OnWallops(userrec* user, std::string text) { }; // server is a wrapper class that provides methods to all of the C-style // exports in the core |