aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_watch.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_watch.cpp
parentFix a few Doxygen comment errors. (diff)
downloadinspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.tar.gz
inspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.tar.bz2
inspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.zip
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_watch.cpp')
-rw-r--r--src/modules/m_watch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp
index 8408db834..e16588233 100644
--- a/src/modules/m_watch.cpp
+++ b/src/modules/m_watch.cpp
@@ -122,7 +122,7 @@ class CommandWatch final
user->WriteNumeric(RPL_ENDOFWATCHLIST, "End of WATCH S");
}
- public:
+public:
unsigned long maxwatch;
CommandWatch(Module* mod, IRCv3::Monitor::Manager& managerref)
@@ -181,7 +181,7 @@ class ModuleWatch final
, public Away::EventListener
, public ISupport::EventListener
{
- private:
+private:
IRCv3::Monitor::Manager manager;
CommandWatch cmd;
@@ -207,7 +207,7 @@ class ModuleWatch final
SendAlert(user, nick, RPL_LOGOFF, "went offline", user->age);
}
- public:
+public:
ModuleWatch()
: Module(VF_VENDOR, "Adds the /WATCH command which allows users to find out when their friends are connected to the server.")
, Away::EventListener(this)