1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 18:03:14 +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
@@ -24,7 +24,7 @@ class CommandCSTopic : public Command
{
}
CommandResult Execute(User *u, std::vector<std::string> &params)
CommandReturn Execute(User *u, std::vector<std::string> &params)
{
char *chan = params[0].c_str();
char *topic = params.size() > 1 ? params[1].c_str() : NULL;