summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-15 12:14:04 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-15 12:14:04 +0000
commit187544bfd00c340492924f8238109ff7929c555d (patch)
treee541035dfc07644a4f8dec243386ab3672585f82 /src/command_parse.cpp
parentabdc701198fde5be73bd32e73c8c9d2ad294d649 (diff)
Fix naming convention to be consistant. (cmd_ -> Command)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10891 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 36b3d712c..f427b478c 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -525,7 +525,7 @@ bool CommandParser::ReloadCommand(std::string cmd, User* user)
return false;
}
-CmdResult cmd_reload::Handle(const std::vector<std::string>& parameters, User *user)
+CmdResult CommandReload::Handle(const std::vector<std::string>& parameters, User *user)
{
if (parameters.size() < 1)
return CMD_FAILURE;
@@ -606,7 +606,7 @@ void CommandParser::SetupCommandTable()
}
if (cmdlist.find("RELOAD") == cmdlist.end())
- this->CreateCommand(new cmd_reload(ServerInstance));
+ this->CreateCommand(new CommandReload(ServerInstance));
}
int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, std::string &dest)