diff options
-rw-r--r-- | src/corelib/thread/qthread.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/corelib/thread/qthread.cpp b/src/corelib/thread/qthread.cpp index 0c95a58d895..e5006cbb1d5 100644 --- a/src/corelib/thread/qthread.cpp +++ b/src/corelib/thread/qthread.cpp @@ -1010,6 +1010,11 @@ QThread *QThread::currentThread() return QThreadData::current()->thread.loadAcquire(); } +bool QThread::isMainThread() noexcept +{ + return true; +} + bool QThread::isCurrentThread() const noexcept { return true; |