diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_services_account.cpp | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_services_account.cpp')
| -rw-r--r-- | src/modules/m_services_account.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/m_services_account.cpp b/src/modules/m_services_account.cpp index b5d5f22a6..fea831547 100644 --- a/src/modules/m_services_account.cpp +++ b/src/modules/m_services_account.cpp @@ -49,7 +49,7 @@ enum class RegisteredChannel final : public SimpleChannelMode { - public: +public: RegisteredChannel(Module* Creator) : SimpleChannelMode(Creator, "c_registered", 'r') { @@ -73,7 +73,7 @@ class RegisteredUser final : public SimpleUserMode { - public: +public: RegisteredUser(Module* Creator) : SimpleUserMode(Creator, "u_registered", 'r') { @@ -96,7 +96,7 @@ class AccountExtItemImpl final { Events::ModuleEventProvider eventprov; - public: +public: AccountExtItemImpl(Module* mod) : AccountExtItem(mod, "accountname", ExtensionType::USER, true) , eventprov(mod, "event/account") @@ -132,7 +132,7 @@ class AccountExtBan final private: AccountExtItemImpl& accountext; - public: +public: AccountExtBan(Module* Creator, AccountExtItemImpl& AccountExt) : ExtBan::MatchingBase(Creator, "account", 'R') , accountext(AccountExt) @@ -152,7 +152,7 @@ class UnauthedExtBan final private: AccountExtItemImpl& accountext; - public: +public: UnauthedExtBan(Module* Creator, AccountExtItemImpl& AccountExt) : ExtBan::MatchingBase(Creator, "unauthed", 'U') , accountext(AccountExt) @@ -171,7 +171,7 @@ class ModuleServicesAccount final , public CTCTags::EventListener , public Whois::EventListener { - private: +private: CallerID::API calleridapi; CheckExemption::EventProvider exemptionprov; SimpleChannelMode reginvitemode; @@ -184,7 +184,7 @@ class ModuleServicesAccount final AccountExtBan accountextban; UnauthedExtBan unauthedextban; - public: +public: ModuleServicesAccount() : Module(VF_VENDOR | VF_OPTCOMMON, "Adds various channel and user modes relating to services accounts.") , CTCTags::EventListener(this) |
