diff options
| author | 2026-03-26 22:52:31 +0000 | |
|---|---|---|
| committer | 2026-03-26 22:52:31 +0000 | |
| commit | 5c9b23907a3cbffdcf940582afa2e9805f99e1a8 (patch) | |
| tree | 9a33e7d4cf781ae94966985560a5be40d95ef6be /modules/auditorium.cpp | |
| parent | Switch typedefs to using statements. (diff) | |
Move CUList to be declared inside User.
Diffstat (limited to 'modules/auditorium.cpp')
| -rw-r--r-- | modules/auditorium.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/auditorium.cpp b/modules/auditorium.cpp index 98852a1a5..ba1118aa2 100644 --- a/modules/auditorium.cpp +++ b/modules/auditorium.cpp @@ -135,8 +135,8 @@ public: return MOD_RES_DENY; } - /** Build CUList for showing this join/part/kick */ - void BuildExcept(Membership* memb, CUList& excepts) + /** Build User::List for showing this join/part/kick */ + void BuildExcept(Membership* memb, User::List& excepts) { if (IsVisible(memb)) return; @@ -148,12 +148,12 @@ public: } } - void OnUserPart(Membership* memb, std::string& partmessage, CUList& excepts) override + void OnUserPart(Membership* memb, std::string& partmessage, User::List& excepts) override { BuildExcept(memb, excepts); } - void OnUserKick(User* source, Membership* memb, const std::string& reason, CUList& excepts) override + void OnUserKick(User* source, Membership* memb, const std::string& reason, User::List& excepts) override { BuildExcept(memb, excepts); } |
