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

Pick-to: 6.4
Fixes: QTBUG-107174
Change-Id: Id8d5e3999fe94b03acc1fffd171ae572957e15bc
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Thiago Macieira 2022-10-04 07:54:52 -07:00
parent 6fdd986bd9
commit 71f32653cb

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.
*/
/*!