X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fmodechange.h;h=885c22900907527fe3c0b09b6c6fce88b3f11dc0;hb=60d92db9a1b71bbfd4230c5eb9f04cd6a87a41d8;hp=e20665790f54530d3a56d8e007845d0957e9385e;hpb=3a3ff949670c61a4a8856e1391222e156eb1cd17;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()) {