diff options
| author | 2022-04-17 11:23:14 +0100 | |
|---|---|---|
| committer | 2022-04-17 11:23:14 +0100 | |
| commit | 57b3a40afa34a9f2db3fe39455fe2dfa33ab8695 (patch) | |
| tree | be8eb8260084c1cc91974427e1e0fa13c2f2a3aa /include | |
| parent | Remove ValidateParam and rename CanonicalizeParam. (diff) | |
Refactor ListModeBase::OnModeChange.
Diffstat (limited to 'include')
| -rw-r--r-- | include/listmode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/listmode.h b/include/listmode.h index 953957646..b309e76cd 100644 --- a/include/listmode.h +++ b/include/listmode.h @@ -167,7 +167,7 @@ public: * @param channel Channel the parameter is being added to * @param parameter The actual parameter being added */ - virtual void TellListTooLong(User* source, Channel* channel, std::string& parameter); + virtual void TellListTooLong(LocalUser* source, Channel* channel, std::string& parameter); /** Tell the user an item is already on the list. * Overridden by implementing module. @@ -175,7 +175,7 @@ public: * @param channel Channel the parameter is being added to * @param parameter The actual parameter being added */ - virtual void TellAlreadyOnList(User* source, Channel* channel, std::string& parameter); + virtual void TellAlreadyOnList(LocalUser* source, Channel* channel, std::string& parameter); /** Tell the user that the parameter is not in the list. * Overridden by implementing module. @@ -183,7 +183,7 @@ public: * @param channel Channel the parameter is being removed from * @param parameter The actual parameter being removed */ - virtual void TellNotSet(User* source, Channel* channel, std::string& parameter); + virtual void TellNotSet(LocalUser* source, Channel* channel, std::string& parameter); }; inline ListModeBase::ModeList* ListModeBase::GetList(Channel* channel) |
