QTest::qWaitFor: make a comment terser

...and adjust it to its presence in the new QDeadlineTimer overload,
which sports nanoseconds granularity.

Pick-to: 6.7
Change-Id: Ifa9658ca32c5dc4bef5cf36dec2e452174eebe1c
Reviewed-by: Ahmad Samir <a.samirh78@gmail.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
Marc Mutz 2024-03-12 08:29:06 +01:00
parent 710eda7da8
commit dd5925fedb
1 changed files with 2 additions and 3 deletions

View File

@ -23,9 +23,8 @@ qWaitFor(Functor predicate, QDeadlineTimer deadline = QDeadlineTimer(std::chrono
if (predicate())
return true;
// qWait() is expected to spin the event loop, even when called with a small
// timeout like 1ms, so we we can't use a simple while-loop here based on
// the deadline timer not having timed out. Use do-while instead.
// qWait() is expected to spin the event loop at least once, even when
// called with a small timeout like 1ns.
using namespace std::chrono;