diff options
author | Trond Kjernåsen <trond@trolltech.com> | 2010-02-24 10:44:37 (GMT) |
---|---|---|
committer | Trond Kjernåsen <trond@trolltech.com> | 2010-02-24 10:44:37 (GMT) |
commit | 38d5ab158a4d1b68fb64149b83ac169701d63403 (patch) | |
tree | 641c507e9516fa9bf1a83b326b99b8db8de6601f /src/corelib/concurrent | |
parent | c4fa3331a4429f83581137315a374836e2b8c594 (diff) | |
download | Qt-38d5ab158a4d1b68fb64149b83ac169701d63403.zip Qt-38d5ab158a4d1b68fb64149b83ac169701d63403.tar.gz Qt-38d5ab158a4d1b68fb64149b83ac169701d63403.tar.bz2 |
Fix grammar.
Reviewed-by: Kim
Diffstat (limited to 'src/corelib/concurrent')
-rw-r--r-- | src/corelib/concurrent/qfuturewatcher.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/corelib/concurrent/qfuturewatcher.cpp b/src/corelib/concurrent/qfuturewatcher.cpp index 2213725..f3375e1 100644 --- a/src/corelib/concurrent/qfuturewatcher.cpp +++ b/src/corelib/concurrent/qfuturewatcher.cpp @@ -500,8 +500,9 @@ void QFutureWatcherBasePrivate::sendCallOutEvent(QFutureCallOutEvent *event) Starts watching the given \a future. - One of the signal might be emit for the current state of the \a future. - (For example, if the future is already stopped, the finished signal will be emit) + One of the signals might be emitted for the current state of the + \a future. For example, if the future is already stopped, the + finished signal will be emitted. To avoid race condition, it is important to call this function after doing the connections. |