summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-09-29 23:39:03 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-30 11:37:52 +0200
commitb32e0da8ebfe3dabb3b18b6d9e4588ec525ed3f2 (patch)
tree4317fa6c9b6018c6159cba654a64ce403b313c0d /src/corelib/kernel
parent248f29075e84cf57529ce7678c21e13a0fbf4a7e (diff)
Fix bootstrapped build of QCoreApplication
696060134d10d44175970ffd38618544ecdd9387 introduced the use of QBasicMutex and QMutexLocker (qmutex.h) but that wasn't #included. I don't know in what way my build is different, though. Change-Id: Ie3df3c746fdf1c4735f298c3578cd93a9a14327e Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r--src/corelib/kernel/qcoreapplication.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
index 3ae4e523c8..71ff47eab8 100644
--- a/src/corelib/kernel/qcoreapplication.cpp
+++ b/src/corelib/kernel/qcoreapplication.cpp
@@ -54,6 +54,7 @@
#include <qfile.h>
#include <qfileinfo.h>
#include <qhash.h>
+#include <qmutex.h>
#include <private/qprocess_p.h>
#include <qstandardpaths.h>
#include <qtextcodec.h>