Add since 5.0 markers to new QCryptographicHash enums/functions
authorAlbert Astals Cid <albert.astals@canonical.com>
Wed, 13 Jun 2012 09:50:31 +0000 (11:50 +0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 14 Jun 2012 03:26:49 +0000 (05:26 +0200)
Change-Id: If367d365510cc7f6bf8f87808f5843c4a41d13e1
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
src/corelib/tools/qcryptographichash.cpp

index be124c9..5b6f1b9 100644 (file)
@@ -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)
 {