aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_delayjoin.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_delayjoin.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_delayjoin.cpp')
-rw-r--r--src/modules/m_delayjoin.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/m_delayjoin.cpp b/src/modules/m_delayjoin.cpp
index 8f5a080f1..d19e03d88 100644
--- a/src/modules/m_delayjoin.cpp
+++ b/src/modules/m_delayjoin.cpp
@@ -33,11 +33,11 @@
class DelayJoinMode final
: public SimpleChannelMode
{
- private:
+private:
IntExtItem& unjoined;
IRCv3::ServerTime::API servertime;
- public:
+public:
DelayJoinMode(Module* Parent, IntExtItem& ext)
: SimpleChannelMode(Parent, "delayjoin", 'D')
, unjoined(ext)
@@ -75,10 +75,10 @@ namespace
class JoinHook final
: public ClientProtocol::EventHook
{
- private:
+private:
const IntExtItem& unjoined;
- public:
+public:
JoinHook(Module* mod, const IntExtItem& unjoinedref)
: ClientProtocol::EventHook(mod, "JOIN", 10)
, unjoined(unjoinedref)
@@ -104,7 +104,7 @@ class ModuleDelayJoin final
, public Names::EventListener
, public Who::EventListener
{
- private:
+private:
IntExtItem unjoined;
JoinHook joinhook;
DelayJoinMode djm;
@@ -122,7 +122,7 @@ class ModuleDelayJoin final
}
}
- public:
+public:
ModuleDelayJoin()
: Module(VF_VENDOR, "Adds channel mode D (delayjoin) which hides JOIN messages from users until they speak.")
, CTCTags::EventListener(this)