diff options
| author | 2020-11-10 23:14:21 +0000 | |
|---|---|---|
| committer | 2020-11-10 23:14:21 +0000 | |
| commit | ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43 (patch) | |
| tree | 86fee6a331b262932973ac453169a1b566d60a2a /src/modules/m_services_account.cpp | |
| parent | Convert FIRST_MOD_RESULT_CUSTOM to a variadic function. (diff) | |
| download | inspircd++-ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43.tar.gz inspircd++-ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43.tar.bz2 inspircd++-ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43.zip | |
Convert FOREACH_MOD_CUSTOM to a variadic function.
Diffstat (limited to 'src/modules/m_services_account.cpp')
| -rw-r--r-- | src/modules/m_services_account.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_services_account.cpp b/src/modules/m_services_account.cpp index 278786aef..750690219 100644 --- a/src/modules/m_services_account.cpp +++ b/src/modules/m_services_account.cpp @@ -138,7 +138,7 @@ class AccountExtItemImpl : public AccountExtItem } } - FOREACH_MOD_CUSTOM(eventprov, AccountEventListener, OnAccountChange, (user, value)); + eventprov.Call(&AccountEventListener::OnAccountChange, user, value); } }; |
