aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_botmode.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_botmode.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_botmode.cpp')
-rw-r--r--src/modules/m_botmode.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp
index d0175369c..95100ae0f 100644
--- a/src/modules/m_botmode.cpp
+++ b/src/modules/m_botmode.cpp
@@ -32,11 +32,11 @@
class BotTag final
: public ClientProtocol::MessageTagProvider
{
- private:
+private:
SimpleUserMode& botmode;
CTCTags::CapReference ctctagcap;
- public:
+public:
BotTag(Module* mod, SimpleUserMode& bm)
: ClientProtocol::MessageTagProvider(mod)
, botmode(bm)
@@ -63,12 +63,12 @@ class ModuleBotMode final
, public Who::EventListener
, public Whois::EventListener
{
- private:
+private:
SimpleUserMode bm;
BotTag tag;
bool forcenotice;
- public:
+public:
ModuleBotMode()
: Module(VF_VENDOR, "Adds user mode B (bot) which marks users with it set as bots in their /WHOIS response.")
, ISupport::EventListener(this)