1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 10:36:38 +02:00

The first of a few "CBX OCDing over code style" commits, focusing on include/* and src/* but not src/core/* or src/modules/*.

This commit is contained in:
Naram Qashat
2010-06-20 18:42:58 -04:00
parent 2528dc80bd
commit 381c9c8870
98 changed files with 3799 additions and 4064 deletions
+3 -6
View File
@@ -3,14 +3,12 @@
* Copyright (C) 2008-2010 Anope Team <team@anope.org>
*
* Please read COPYING and README for further details.
*
*
*
*/
#include "services.h"
#include "modules.h"
Command::Command(const ci::string &sname, size_t min_params, size_t max_params, const std::string &spermission) : MaxParams(max_params), MinParams(min_params), name(sname), permission(spermission)
Command::Command(const ci::string &sname, size_t min_params, size_t max_params, const ci::string &spermission) : MaxParams(max_params), MinParams(min_params), name(sname), permission(spermission)
{
this->module = NULL;
this->service = NULL;
@@ -33,7 +31,7 @@ void Command::OnSyntaxError(User *u, const ci::string &subcommand)
{
}
void Command::SetPermission(const std::string &reststr)
void Command::SetPermission(const ci::string &reststr)
{
this->permission = reststr;
}
@@ -47,4 +45,3 @@ bool Command::DelSubcommand(const ci::string &cname)
{
return false;
}