summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qfuturewatcher.cpp
diff options
context:
space:
mode:
authorKari Oikarinen <kari.oikarinen@qt.io>2018-03-27 09:35:43 +0300
committerKari Oikarinen <kari.oikarinen@qt.io>2018-03-28 11:40:30 +0000
commitf22ae9c0d059372d51990ec6fad04d7d829c990b (patch)
tree8518b108925bf2e5acbd92b849d0e8faf539255e /src/corelib/thread/qfuturewatcher.cpp
parentc59cb9809559f0aae6be8544cb2049e41f8040e9 (diff)
QFutureWatcher: Refer to convenience method resultAt in documentation
The future does not actually have a result() member function that takes an int. The correct function is resultAt(). But that is also available directly in the QFutureWatcher, so refer to that instead of advising to get to the future. Change-Id: I53d267b4b48b1171bf611e11130b9dacabc059a4 Reviewed-by: Martin Smith <martin.smith@qt.io>
Diffstat (limited to 'src/corelib/thread/qfuturewatcher.cpp')
-rw-r--r--src/corelib/thread/qfuturewatcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/thread/qfuturewatcher.cpp b/src/corelib/thread/qfuturewatcher.cpp
index 8c4cb9a5a2..5b68af1fbc 100644
--- a/src/corelib/thread/qfuturewatcher.cpp
+++ b/src/corelib/thread/qfuturewatcher.cpp
@@ -576,7 +576,7 @@ void QFutureWatcherBasePrivate::sendCallOutEvent(QFutureCallOutEvent *event)
This signal is emitted when the watched future reports a ready result at
\a index. If the future reports multiple results, the index will indicate
which one it is. Results can be reported out-of-order. To get the result,
- call future().result(index);
+ call resultAt(index);
*/
/*!