1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 00:26:37 +02:00

Fix modules to use the right type (CommandReturn, not CommandResult)

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1977 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2009-02-10 16:17:16 +00:00
parent e225e7e628
commit fe39b96db7
89 changed files with 210 additions and 210 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ class CommandCSAppendTopic : public Command
{
}
CommandResult Execute(User *u, std::vector<std::string> &params)
CommandReturn Execute(User *u, std::vector<std::string> &params)
{
const char *chan = params[0].c_str();
const char *newtopic = params[1].c_str();