diff options
Diffstat (limited to 'modules/core/os_help.cpp')
-rw-r--r-- | modules/core/os_help.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/core/os_help.cpp b/modules/core/os_help.cpp index d88119bd2..d2ab5412e 100644 --- a/modules/core/os_help.cpp +++ b/modules/core/os_help.cpp @@ -20,13 +20,13 @@ class CommandOSHelp : public Command { } - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) + CommandReturn Execute(User *u, const std::vector<Anope::string> ¶ms) { - mod_help_cmd(OperServ, u, params[0].c_str()); + mod_help_cmd(OperServ, u, params[0]); return MOD_CONT; } - void OnSyntaxError(User *u, const ci::string &subcommand) + void OnSyntaxError(User *u, const Anope::string &subcommand) { notice_help(Config.s_OperServ, u, OPER_HELP); for (CommandMap::const_iterator it = OperServ->Commands.begin(), it_end = OperServ->Commands.end(); it != it_end; ++it) @@ -39,7 +39,7 @@ class CommandOSHelp : public Command class OSHelp : public Module { public: - OSHelp(const std::string &modname, const std::string &creator) : Module(modname, creator) + OSHelp(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator) { this->SetAuthor("Anope"); this->SetType(CORE); |