summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/thread')
-rw-r--r--src/corelib/thread/qfuture.qdoc2
-rw-r--r--src/corelib/thread/qthread.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/thread/qfuture.qdoc b/src/corelib/thread/qfuture.qdoc
index 8d5b7c776c..e607d090c5 100644
--- a/src/corelib/thread/qfuture.qdoc
+++ b/src/corelib/thread/qfuture.qdoc
@@ -590,7 +590,7 @@
\sa operator=()
*/
-/*! \fn template <typename T> QFutureIterator &QFutureIterator<T>::operator=(const QFuture<T> &future)
+/*! \fn template <typename T> QFutureIterator<T> &QFutureIterator<T>::operator=(const QFuture<T> &future)
Makes the iterator operate on \a future. The iterator is set to be at the
front of the result list (before the first result).
diff --git a/src/corelib/thread/qthread.cpp b/src/corelib/thread/qthread.cpp
index adff853669..8c9cbbff63 100644
--- a/src/corelib/thread/qthread.cpp
+++ b/src/corelib/thread/qthread.cpp
@@ -892,7 +892,7 @@ bool QThread::isInterruptionRequested() const
}
/*
- \fn template <typename Function, typename Args...> static QThread *QThread::create(Function &&f, Args &&... args)
+ \fn template <typename Function, typename... Args> QThread *QThread::create(Function &&f, Args &&... args)
\since 5.10
Creates a new QThread object that will execute the function \a f with the
@@ -916,7 +916,7 @@ bool QThread::isInterruptionRequested() const
*/
/*
- \fn template <typename Function> static QThread *QThread::create(Function &&f)
+ \fn template <typename Function> QThread *QThread::create(Function &&f)
\since 5.10
Creates a new QThread object that will execute the function \a f.