aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppMessage.h
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2020-02-11 17:12:45 +0100
committerLinus Jahn <lnj@kaidan.im>2020-02-11 17:12:45 +0100
commitbc4c3ee94442c9b80993ce109d5070862dc9f170 (patch)
treeb782a135e84dfcbeb33254df8a33bf7fe53fb786 /src/base/QXmppMessage.h
parent776f028d9f3f51e9dbba834a01d1decd737c4a27 (diff)
downloadqxmpp-bc4c3ee94442c9b80993ce109d5070862dc9f170.tar.gz
doc: Use XEP links everywhere
Diffstat (limited to 'src/base/QXmppMessage.h')
-rw-r--r--src/base/QXmppMessage.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/base/QXmppMessage.h b/src/base/QXmppMessage.h
index 7b43a651..88a6edd2 100644
--- a/src/base/QXmppMessage.h
+++ b/src/base/QXmppMessage.h
@@ -50,7 +50,7 @@ public:
Headline
};
- /// This enum describes a chat state as defined by XEP-0085: Chat State
+ /// This enum describes a chat state as defined by \xep{0085}: Chat State
/// Notifications.
enum State {
None = 0, ///< The message does not contain any chat state information.
@@ -61,7 +61,7 @@ public:
Paused ///< User had been composing but now has stopped.
};
- /// This enum describes a chat marker as defined by XEP-0333: Chat Markers.
+ /// This enum describes a chat marker as defined by \xep{0333}: Chat Markers.
enum Marker {
NoMarker = 0,
Received,
@@ -69,7 +69,7 @@ public:
Acknowledged
};
- /// XEP-0334: Message Processing Hints
+ /// \xep{0334}: Message Processing Hints
///
/// \since QXmpp 1.1
enum Hint {
@@ -81,16 +81,16 @@ public:
/// This enum describes different end-to-end encryption methods. These can
/// be used to mark a message explicitly as encrypted with a specific
- /// algothim. See XEP-0380: Explicit Message Encryption for details.
+ /// algothim. See \xep{0380}: Explicit Message Encryption for details.
///
/// \since QXmpp 1.1
enum EncryptionMethod {
NoEncryption, ///< No encryption
UnknownEncryption, ///< Unknown encryption
- OTR, ///< XEP-0364: Current Off-the-Record Messaging Usage
- LegacyOpenPGP, ///< XEP-0027: Current Jabber OpenPGP Usage
- OX, ///< XEP-0373: OpenPGP for XMPP
- OMEMO ///< XEP-0384: OMEMO Encryption
+ OTR, ///< \xep{0364}: Current Off-the-Record Messaging Usage
+ LegacyOpenPGP, ///< \xep{0027}: Current Jabber OpenPGP Usage
+ OX, ///< \xep{0373}: OpenPGP for XMPP
+ OMEMO ///< \xep{0384}: OMEMO Encryption
};
QXmppMessage(const QString &from = QString(), const QString &to = QString(),