diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-28 10:28:52 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-28 10:28:52 +0000 |
commit | 36b32f6c0547b821565270806a986f7035bffaef (patch) | |
tree | f1ef63dc77f4f1e249f357beb8fbb5670e11bf3c /src | |
parent | 0e5b1c94b30ec2f3cd73e72e379398dae55fbbd2 (diff) |
Missing two Module::
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1975 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 3d009a4bf..899e6759a 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -359,8 +359,8 @@ void Module::OnRawSocketAccept(int fd, std::string ip, int localport) { }; int Module::OnRawSocketWrite(int fd, char* buffer, int count) { return 0; }; void Module::OnRawSocketClose(int fd) { }; int Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; }; -void OnUserMessage(userrec* user, void* dest, int target_type, std::string text) { }; -void OnUserNotice(userrec* user, void* dest, int target_type, std::string text) { }; +void Module::OnUserMessage(userrec* user, void* dest, int target_type, std::string text) { }; +void Module::OnUserNotice(userrec* user, void* dest, int target_type, std::string text) { }; // server is a wrapper class that provides methods to all of the C-style // exports in the core |