diff options
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 |