summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-08-27 23:34:55 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-09-28 23:50:10 +0200
commit26f238a80d38d6e1da0a6d485dd0b185b73c46ef (patch)
tree313ed2380002c0f32d854681d211a8e281822f46 /src
parentb1d2b80a90b3eda41f4d84fc504220c6b0cf2c29 (diff)
qfuturesynchronizer.cpp: fix whitespace errors
Change-Id: I106ae536f1411939c3785f0a97c39752db59b19c Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/thread/qfuturesynchronizer.qdoc28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/corelib/thread/qfuturesynchronizer.qdoc b/src/corelib/thread/qfuturesynchronizer.qdoc
index d182c22fa8..04a875aeb1 100644
--- a/src/corelib/thread/qfuturesynchronizer.qdoc
+++ b/src/corelib/thread/qfuturesynchronizer.qdoc
@@ -52,20 +52,20 @@
one or more QFuture objects. Futures are added using the addFuture() or
setFuture() functions. The futures() function returns a list of futures.
Use clearFutures() to remove all futures from the QFutureSynchronizer.
-
+
The waitForFinished() function waits for all futures to finish.
The destructor of QFutureSynchronizer calls waitForFinished(), providing
an easy way to ensure that all futures have finished before returning from
a function:
-
+
\snippet code/src_corelib_thread_qfuturesynchronizer.cpp 0
-
+
The behavior of waitForFinished() can be changed using the
setCancelOnWait() function. Calling setCancelOnWait(true) will cause
waitForFinished() to cancel all futures before waiting for them to finish.
You can query the status of the cancel-on-wait feature using the
cancelOnWait() function.
-
+
\sa QFuture, QFutureWatcher, {Concurrent Programming}{Qt Concurrent}
*/
@@ -80,26 +80,26 @@
Constructs a QFutureSynchronizer and begins watching \a future by calling
addFuture().
-
+
\sa addFuture()
*/
/*!
\fn QFutureSynchronizer::~QFutureSynchronizer()
-
+
Calls waitForFinished() function to ensure that all futures have finished
before destroying this QFutureSynchronizer.
-
+
\sa waitForFinished()
*/
/*!
\fn void QFutureSynchronizer::setFuture(const QFuture<T> &future)
-
+
Sets \a future to be the only future managed by this QFutureSynchronizer.
This is a convenience function that calls waitForFinished(),
then clearFutures(), and finally passes \a future to addFuture().
-
+
\sa addFuture(), waitForFinished(), clearFutures()
*/
@@ -107,7 +107,7 @@
\fn void QFutureSynchronizer::addFuture(const QFuture<T> &future)
Adds \a future to the list of managed futures.
-
+
\sa futures()
*/
@@ -116,7 +116,7 @@
Waits for all futures to finish. If cancelOnWait() returns true, each
future is canceled before waiting for them to finish.
-
+
\sa cancelOnWait(), setCancelOnWait()
*/
@@ -124,7 +124,7 @@
\fn void QFutureSynchronizer::clearFutures()
Removes all managed futures from this QFutureSynchronizer.
-
+
\sa addFuture(), setFuture()
*/
@@ -132,13 +132,13 @@
\fn QList<QFuture<T> > QFutureSynchronizer::futures() const
Returns a list of all managed futures.
-
+
\sa addFuture(), setFuture()
*/
/*!
\fn void QFutureSynchronizer::setCancelOnWait(bool enabled)
-
+
Enables or disables the cancel-on-wait feature based on the \a enabled
argument. If \a enabled is true, the waitForFinished() function will cancel
all futures before waiting for them to finish.