summaryrefslogtreecommitdiff
path: root/include/modes.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-12-14 18:37:23 +0000
committerPeter Powell <petpow@saberuk.com>2019-12-14 18:38:13 +0000
commit6617d29b5227f962c348e638a373ebb78989b7ba (patch)
treee2d6da92be797d519cbd8e154d1ba97a8c656884 /include/modes.h
parenta4ab6876c3f4afc087a3db90404bbdeb47525e6e (diff)
Fix a bunch of broken indentation.
Diffstat (limited to 'include/modes.h')
-rw-r--r--include/modes.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/modes.h b/include/modes.h
index bd7966864..d3134d4f0 100644
--- a/include/modes.h
+++ b/include/modes.h
@@ -39,8 +39,8 @@ enum ModeClass
class CoreExport Mode : public Base
{
public:
- /* Mode name */
- Anope::string name;
+ /* Mode name */
+ Anope::string name;
/* Class of mode this is (user/channel) */
ModeClass mclass;
/* Mode char for this, eg 'b' */
@@ -78,7 +78,7 @@ class CoreExport UserMode : public Mode
class CoreExport UserModeParam : public UserMode
{
public:
- /** constructor
+ /** constructor
* @param name The mode name
* @param mc The mode char
*/
@@ -229,9 +229,9 @@ class CoreExport ChannelStatus
{
Anope::string modes;
public:
- ChannelStatus();
- ChannelStatus(const Anope::string &modes);
- void AddMode(char c);
+ ChannelStatus();
+ ChannelStatus(const Anope::string &modes);
+ void AddMode(char c);
void DelMode(char c);
bool HasMode(char c) const;
bool Empty() const;
@@ -399,7 +399,7 @@ class CoreExport Entry
Anope::string nick, user, host, real;
/** Constructor
- * @param mode What mode this host is for, can be empty for unknown/no mode
+ * @param mode What mode this host is for, can be empty for unknown/no mode
* @param host A full or poartial nick!ident@host/cidr#real name mask
*/
Entry(const Anope::string &mode, const Anope::string &host);