aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppStanza.cpp
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2019-10-23 13:23:39 +0200
committerLinus Jahn <lnj@kaidan.im>2019-10-23 13:26:48 +0200
commitda8fbd9f39bc5cbabb6b8780a8b21763f8ad1b96 (patch)
tree1574b80c5843f05f605099992e884668a44a30a9 /src/base/QXmppStanza.cpp
parent979918a40759064c01f31bc099217086b81936d9 (diff)
downloadqxmpp-da8fbd9f39bc5cbabb6b8780a8b21763f8ad1b96.tar.gz
Add \since QXmpp 1.1 to all new methods and classes
Methods of new classes have no \since tag.
Diffstat (limited to 'src/base/QXmppStanza.cpp')
-rw-r--r--src/base/QXmppStanza.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/base/QXmppStanza.cpp b/src/base/QXmppStanza.cpp
index 113b0b6c..22d0ce6e 100644
--- a/src/base/QXmppStanza.cpp
+++ b/src/base/QXmppStanza.cpp
@@ -255,6 +255,8 @@ void QXmppStanza::Error::setType(QXmppStanza::Error::Type type)
/// Returns true, if an HTTP File Upload failed, because the file was too
/// large.
+///
+/// \since QXmpp 1.1
bool QXmppStanza::Error::fileTooLarge() const
{
@@ -264,6 +266,8 @@ bool QXmppStanza::Error::fileTooLarge() const
/// Sets whether the requested file for HTTP File Upload was too large.
///
/// You should also set maxFileSize in this case.
+///
+/// \since QXmpp 1.1
void QXmppStanza::Error::setFileTooLarge(bool fileTooLarge)
{
@@ -271,6 +275,8 @@ void QXmppStanza::Error::setFileTooLarge(bool fileTooLarge)
}
/// Returns the maximum file size allowed for uploading via. HTTP File Upload.
+///
+/// \since QXmpp 1.1
qint64 QXmppStanza::Error::maxFileSize() const
{
@@ -280,6 +286,8 @@ qint64 QXmppStanza::Error::maxFileSize() const
/// Sets the maximum file size allowed for uploading via. HTTP File Upload.
///
/// This sets fileTooLarge to true.
+///
+/// \since QXmpp 1.1
void QXmppStanza::Error::setMaxFileSize(qint64 maxFileSize)
{
@@ -288,6 +296,8 @@ void QXmppStanza::Error::setMaxFileSize(qint64 maxFileSize)
}
/// Returns when to retry the upload request via. HTTP File Upload.
+///
+/// \since QXmpp 1.1
QDateTime QXmppStanza::Error::retryDate() const
{