aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_chanhistory.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_chanhistory.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_chanhistory.cpp')
-rw-r--r--src/modules/m_chanhistory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_chanhistory.cpp b/src/modules/m_chanhistory.cpp
index 32768a0b2..da8510c53 100644
--- a/src/modules/m_chanhistory.cpp
+++ b/src/modules/m_chanhistory.cpp
@@ -78,7 +78,7 @@ struct HistoryList final
class HistoryMode final
: public ParamMode<HistoryMode, SimpleExtItem<HistoryList>>
{
- public:
+public:
unsigned long maxlines;
HistoryMode(Module* Creator)
: ParamMode<HistoryMode, SimpleExtItem<HistoryList> >(Creator, "history", 'H')
@@ -142,7 +142,7 @@ class ModuleChanHistory final
: public Module
, public ServerProtocol::BroadcastEventListener
{
- private:
+private:
HistoryMode historymode;
SimpleUserMode nohistorymode;
bool prefixmsg;
@@ -191,7 +191,7 @@ class ModuleChanHistory final
batchmanager->End(batch);
}
- public:
+public:
ModuleChanHistory()
: Module(VF_VENDOR, "Adds channel mode H (history) which allows message history to be viewed on joining the channel.")
, ServerProtocol::BroadcastEventListener(this)