diff options
author | Adam <Adam@anope.org> | 2011-03-29 13:43:22 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-29 13:43:22 -0400 |
commit | 685e99be0241e97665cefe8730bb4aa53647aeb2 (patch) | |
tree | dc62fa62a4af26a360a4aa661d81514e9441aa0c /include | |
parent | b14b7bd55ec9b26ca7787060022b63fc3c001196 (diff) |
Fixed some left over useprivmsg problems and fixed some compiler warnings.
Diffstat (limited to 'include')
-rw-r--r-- | include/regchannel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/regchannel.h b/include/regchannel.h index 80277803c..f2eaf5952 100644 --- a/include/regchannel.h +++ b/include/regchannel.h @@ -204,11 +204,11 @@ class CoreExport ChannelInfo : public Extensible, public Flags<ChannelInfoFlag, /** Erase an entry from the channel access list * - * @param access The access to remove + * @param taccess The access to remove * * Clears the memory used by the given access entry and removes it from the vector. */ - void EraseAccess(ChanAccess *access); + void EraseAccess(ChanAccess *taccess); /** Clear the entire channel access list * @@ -327,11 +327,11 @@ class CoreExport ChannelInfo : public Extensible, public Flags<ChannelInfoFlag, std::pair<ModeList::iterator, ModeList::iterator> GetModeList(ChannelModeName Name); /** Get details for a specific mlock - * @param name The mode name + * @param mname The mode name * @param An optional param to match with * @return The MLock, if any */ - ModeLock *GetMLock(ChannelModeName name, const Anope::string ¶m = ""); + ModeLock *GetMLock(ChannelModeName mname, const Anope::string ¶m = ""); /** Check whether a user is permitted to be on this channel * @param u The user |