summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2021-09-03 15:36:50 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2021-09-03 21:40:08 +0200
commit62fc486a77fa882da6d60cfec323223dbbd26236 (patch)
treeeda47c140a343265ba100a93b0135c6883c4cd17 /src/corelib/tools
parent823c4951b2be1532bc26f9109e414841bd1ae829 (diff)
Doc: fix a bunch of qdoc warnings from wrong prototypes
* name method parameters consistently with their declaration * don't document parameters that are not there Pick-to: 6.2 Change-Id: I06ae9fdca357ed29eb7a72802f149eb4914181f4 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qcryptographichash.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/corelib/tools/qcryptographichash.cpp b/src/corelib/tools/qcryptographichash.cpp
index f44dee89d4..0ae389c9f9 100644
--- a/src/corelib/tools/qcryptographichash.cpp
+++ b/src/corelib/tools/qcryptographichash.cpp
@@ -450,8 +450,7 @@ void QCryptographicHash::addData(const char *data, qsizetype length)
#endif
/*!
- Adds the first \a length chars of \a data to the cryptographic
- hash.
+ Adds the characters in \a bytes to the cryptographic hash.
\note In Qt versions prior to 6.3, this function took QByteArray,
not QByteArrayView.