summaryrefslogtreecommitdiff
path: root/include/clientprotocol.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-10-21 19:18:08 +0100
committerPeter Powell <petpow@saberuk.com>2018-10-21 19:18:08 +0100
commit0e6b18ff9180fc7794cea53d0566411b9afb0d7e (patch)
treee1e04786d6239f5b2af8b5387147121b822a172f /include/clientprotocol.h
parent98a80a730e21c6711d8ac14b16aaf6aad50da6c7 (diff)
Fix warnings from Doxygen.
Diffstat (limited to 'include/clientprotocol.h')
-rw-r--r--include/clientprotocol.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clientprotocol.h b/include/clientprotocol.h
index a3efcf984..260e463eb 100644
--- a/include/clientprotocol.h
+++ b/include/clientprotocol.h
@@ -467,7 +467,7 @@ class ClientProtocol::Event
public:
/** Constructor.
- * @param protoevent Protocol event provider the event is an instance of.
+ * @param protoeventprov Protocol event provider the event is an instance of.
*/
Event(EventProvider& protoeventprov)
: event(&protoeventprov)
@@ -478,7 +478,7 @@ class ClientProtocol::Event
}
/** Constructor.
- * @param protoevent Protocol event provider the event is an instance of.
+ * @param protoeventprov Protocol event provider the event is an instance of.
* @param msg Message to include in this event by default.
*/
Event(EventProvider& protoeventprov, ClientProtocol::Message& msg)
@@ -544,7 +544,7 @@ class ClientProtocol::MessageTagProvider : public Events::ModuleEventListener
/** Called for each tag that the server receives from a client in a message.
* @param user User that sent the tag.
* @param tagname Name of the tag.
- * @param value Value of the tag, empty string if the tag has no value. May be modified.
+ * @param tagvalue Value of the tag, empty string if the tag has no value. May be modified.
* @return MOD_RES_ALLOW to accept the tag with the value in 'value', MOD_RES_DENY to reject the tag and act as if it wasn't sent,
* MOD_RES_PASSTHRU to make no decision. If no hooks accept a tag, the tag is rejected.
* The default implementation returns MOD_RES_PASSTHRU.