QThread::wait: Clarify documentation for unsigned long overload

It is not immediately clear from the signature that the time parameter's
unit is miliseconds.

Pick-to: 6.2
Change-Id: Ifee3c6410b6b2352e75571cc53578a660aabb32d
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Fabian Kosmale 2021-11-24 15:33:03 +01:00
parent 5a496a614b
commit 733bd81328

View File

@ -986,7 +986,10 @@ void QThread::setEventDispatcher(QAbstractEventDispatcher *eventDispatcher)
/*!
\fn bool QThread::wait(unsigned long time)
\overload
\a time is the time to wait in milliseconds.
If \a time is ULONG_MAX, then the wait will never timeout.
*/
#if QT_CONFIG(thread)