summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-28 10:28:52 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-28 10:28:52 +0000
commit36b32f6c0547b821565270806a986f7035bffaef (patch)
treef1ef63dc77f4f1e249f357beb8fbb5670e11bf3c
parent0e5b1c94b30ec2f3cd73e72e379398dae55fbbd2 (diff)
Missing two Module::
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1975 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules.cpp4
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