X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fmodechange.h;h=885c22900907527fe3c0b09b6c6fce88b3f11dc0;hb=7f7ffef3b4d5dc6242918a48713d6fab96928a80;hp=e20665790f54530d3a56d8e007845d0957e9385e;hpb=6fe1f4e1136f2ab95a88e68af1894bf6002d03f4;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/modechange.h b/include/modechange.h index e20665790..885c22900 100644 --- a/include/modechange.h +++ b/include/modechange.h @@ -54,9 +54,9 @@ class Modes::ChangeList typedef std::vector List; /** Add a new mode to be changed to this ChangeList - * @param handler Mode handler - * @param add True if this mode is being set, false if removed - * @param parameter Mode parameter + * @param mh Mode handler + * @param adding True if this mode is being set, false if removed + * @param param Mode parameter */ void push(ModeHandler* mh, bool adding, const std::string& param = std::string()) { @@ -64,8 +64,8 @@ class Modes::ChangeList } /** Add a new mode to this ChangeList which will be set on the target - * @param handler Mode handler - * @param parameter Mode parameter + * @param mh Mode handler + * @param param Mode parameter */ void push_add(ModeHandler* mh, const std::string& param = std::string()) { @@ -73,8 +73,8 @@ class Modes::ChangeList } /** Add a new mode to this ChangeList which will be unset from the target - * @param handler Mode handler - * @param parameter Mode parameter + * @param mh Mode handler + * @param param Mode parameter */ void push_remove(ModeHandler* mh, const std::string& param = std::string()) {