summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/modules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 5ef0ed7f7..c1a912eca 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -120,8 +120,8 @@ Version Module::GetVersion() { return Version(1,0,0,0); }
void Module::OnOper(userrec* user) { };
void Module::OnInfo(userrec* user) { };
void Module::OnWhois(userrec* source, userrec* dest) { };
-int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::String text) { return 0; };
-int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::String text) { return 0; };
+int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string text) { return 0; };
+int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string text) { return 0; };
// server is a wrapper class that provides methods to all of the C-style
// exports in the core