summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-12-29 17:39:13 +0100
committerUlf Hermann <ulf.hermann@qt.io>2017-01-04 16:17:44 +0000
commit99245e9576c28777fa1b1fc639c1c24e4aed3789 (patch)
tree4380f81c9545d12a436bc86c31141217dc833f15 /src/corelib
parent1b82a9aea5e2385c08543f3a9ebbed71a0bae3cc (diff)
Avoid zero-as-nullpointer warnings in QThread
Change-Id: I3fd557a54d63c2dcabe58fab65326538896d02a2 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/thread/qthread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/thread/qthread.h b/src/corelib/thread/qthread.h
index 410f642ca7..45786537e2 100644
--- a/src/corelib/thread/qthread.h
+++ b/src/corelib/thread/qthread.h
@@ -140,10 +140,10 @@ public:
static QThread* currentThread();
protected:
- QThread(QThreadPrivate &dd, QObject *parent = 0);
+ QThread(QThreadPrivate &dd, QObject *parent = nullptr);
private:
- explicit QThread(QObject *parent = 0);
+ explicit QThread(QObject *parent = nullptr);
static QThread *instance;
friend class QCoreApplication;