QWaitCondition/Doc: add a simple explanation of the time units

Fixes: QTBUG-107174
Change-Id: Id8d5e3999fe94b03acc1fffd171ae572957e15bc
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
(cherry picked from commit 71f32653cb97040fccce41037e2a7b32a787a4c9)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Thiago Macieira 2022-10-04 07:54:52 -07:00 committed by Qt Cherry-pick Bot
parent 6a54d8b7b4
commit 43ae941b8d

View File

@ -98,10 +98,16 @@
/*!
\fn bool QWaitCondition::wait(QMutex *lockedMutex, unsigned long time)
\overload
Releases the \a lockedMutex and waits on the wait condition for \a time
milliseconds.
*/
/*!
\fn bool QWaitCondition::wait(QReadWriteLock *lockedReadWriteLock, unsigned long time)
\overload
Releases the \a lockedReadWriteLock and waits on the wait condition for \a
time milliseconds.
*/
/*!