summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-07-30 18:34:57 +0100
committerPeter Powell <petpow@saberuk.com>2018-07-30 18:34:57 +0100
commit7bde9de9b3e25a285d82d93ef6b1d3ef9c597e43 (patch)
treedc053af10e29fe2fda599e2f23548649a60bbe15 /include/modules.h
parent8cb20e354533fbec24aafd4e61ff6fa69b434aa2 (diff)
Replace most usages of "name" with "real" or "real name".
Diffstat (limited to 'include/modules.h')
-rw-r--r--include/modules.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h
index 302c2e4d7..0cdb73873 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -216,7 +216,7 @@ enum Implementation
I_OnUserPreInvite, I_OnUserInvite, I_OnUserPreMessage, I_OnUserPreNick,
I_OnUserPostMessage, I_OnUserMessageBlocked, I_OnMode,
I_OnDecodeMetaData, I_OnAcceptConnection, I_OnUserInit,
- I_OnChangeHost, I_OnChangeName, I_OnAddLine, I_OnDelLine, I_OnExpireLine,
+ I_OnChangeHost, I_OnChangeRealName, I_OnAddLine, I_OnDelLine, I_OnExpireLine,
I_OnUserPostNick, I_OnPreMode, I_On005Numeric, I_OnKill, I_OnLoadModule,
I_OnUnloadModule, I_OnBackgroundTimer, I_OnPreCommand, I_OnCheckReady, I_OnCheckInvite,
I_OnRawMode, I_OnCheckKey, I_OnCheckLimit, I_OnCheckBan, I_OnCheckChannelBan, I_OnExtBanCheck,
@@ -585,7 +585,7 @@ class CoreExport Module : public classbase, public usecountbase
* @param user The user who's real name is being changed
* @param name The new real name being set on the user
*/
- virtual void OnChangeName(User* user, const std::string& real);
+ virtual void OnChangeRealName(User* user, const std::string& real);
/** Called whenever a user's IDENT is changed.
* This event triggers after the name has been set.