summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals@canonical.com>2012-06-13 11:50:31 +0200
committerQt by Nokia <qt-info@nokia.com>2012-06-14 05:26:49 +0200
commitd40ab8b9f562c993c863f6f0ccc798ced04a2c6c (patch)
treee383c5c0ac9219a75217427ff80ec00d968e1f3e
parent5f5555f4d3c9a507bfc8fad9a008431257bd1ab3 (diff)
Add since 5.0 markers to new QCryptographicHash enums/functions
Change-Id: If367d365510cc7f6bf8f87808f5843c4a41d13e1 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
-rw-r--r--src/corelib/tools/qcryptographichash.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/corelib/tools/qcryptographichash.cpp b/src/corelib/tools/qcryptographichash.cpp
index be124c94f7..5b6f1b9a3d 100644
--- a/src/corelib/tools/qcryptographichash.cpp
+++ b/src/corelib/tools/qcryptographichash.cpp
@@ -140,10 +140,10 @@ public:
\value Md4 Generate an MD4 hash sum
\value Md5 Generate an MD5 hash sum
\value Sha1 Generate an SHA-1 hash sum
- \value Sha224 Generate an SHA-224 hash sum
- \value Sha256 Generate an SHA-256 hash sum
- \value Sha384 Generate an SHA-384 hash sum
- \value Sha512 Generate an SHA-512 hash sum
+ \value Sha224 Generate an SHA-224 hash sum. Introduced in Qt 5.0
+ \value Sha256 Generate an SHA-256 hash sum. Introduced in Qt 5.0
+ \value Sha384 Generate an SHA-384 hash sum. Introduced in Qt 5.0
+ \value Sha512 Generate an SHA-512 hash sum. Introduced in Qt 5.0
*/
/*!
@@ -238,6 +238,7 @@ void QCryptographicHash::addData(const QByteArray &data)
/*!
Reads the data from the open QIODevice \a device until it ends
and hashes it. Returns true if reading was successful.
+ \since 5.0
*/
bool QCryptographicHash::addData(QIODevice* device)
{