aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppRegisterIq.cpp
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/QXmppRegisterIq.cpp
parent776f028d9f3f51e9dbba834a01d1decd737c4a27 (diff)
downloadqxmpp-bc4c3ee94442c9b80993ce109d5070862dc9f170.tar.gz
doc: Use XEP links everywhere
Diffstat (limited to 'src/base/QXmppRegisterIq.cpp')
-rw-r--r--src/base/QXmppRegisterIq.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/base/QXmppRegisterIq.cpp b/src/base/QXmppRegisterIq.cpp
index 052c4a3c..330a013d 100644
--- a/src/base/QXmppRegisterIq.cpp
+++ b/src/base/QXmppRegisterIq.cpp
@@ -221,34 +221,37 @@ void QXmppRegisterIq::setIsRemove(bool isRemove)
d->isRemove = isRemove;
}
-/// Returns a list of data packages attached using XEP-0231: Bits of Binary.
+///
+/// Returns a list of data packages attached using \xep{0231}: Bits of Binary.
///
/// This could be used to resolve a \c cid: URL of an CAPTCHA field of the
/// form.
///
/// \since QXmpp 1.2
-
+///
QXmppBitsOfBinaryDataList QXmppRegisterIq::bitsOfBinaryData() const
{
return d->bitsOfBinaryData;
}
-/// Returns a list of data attached using XEP-0231: Bits of Binary.
+///
+/// Returns a list of data attached using \xep{0231}: Bits of Binary.
///
/// This could be used to resolve a \c cid: URL of an CAPTCHA field of the
/// form.
///
/// \since QXmpp 1.2
-
+///
QXmppBitsOfBinaryDataList &QXmppRegisterIq::bitsOfBinaryData()
{
return d->bitsOfBinaryData;
}
-/// Sets a list of XEP-0231: Bits of Binary attachments to be included.
+///
+/// Sets a list of \xep{0231}: Bits of Binary attachments to be included.
///
/// \since QXmpp 1.2
-
+///
void QXmppRegisterIq::setBitsOfBinaryData(const QXmppBitsOfBinaryDataList &bitsOfBinaryData)
{
d->bitsOfBinaryData = bitsOfBinaryData;