diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/QXmppMessage.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/QXmppMessage.h b/src/QXmppMessage.h index 8503f86f..9444e59a 100644 --- a/src/QXmppMessage.h +++ b/src/QXmppMessage.h @@ -50,12 +50,12 @@ public: /// XEP-0085 : Chat State Notifications. enum State { - None = 0, - Active, - Inactive, - Gone, - Composing, - Paused, + None = 0, ///< The message does not contain any chat state information. + Active, ///< User is actively participating in the chat session. + Inactive, ///< User has not been actively participating in the chat session. + Gone, ///< User has effectively ended their participation in the chat session. + Composing, ///< User is composing a message. + Paused, ///< User had been composing but now has stopped. }; QXmppMessage(const QString& from = "", const QString& to = "", |
