diff --git a/src/corelib/thread/qthread.cpp b/src/corelib/thread/qthread.cpp index ee947c0c5f8..edfb77f1cf4 100644 --- a/src/corelib/thread/qthread.cpp +++ b/src/corelib/thread/qthread.cpp @@ -371,9 +371,12 @@ QThreadPrivate::~QThreadPrivate() \fn void QThread::started() This signal is emitted from the associated thread when it starts executing, - before the run() function is called. + so any slots connected to it may be called via queued invocation. Whilst + the event may have been posted before run() is called, any + \l {Signals and Slots Across Threads} {cross-thread delivery} of the signal + may still be pending. - \sa finished() + \sa run(), finished() */ /*!