aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Nichols <andy.nichols@theqtcompany.com>2015-10-14 17:12:58 +0200
committerAndy Nichols <andy.nichols@theqtcompany.com>2015-10-14 18:20:14 +0300
commit5aa0efd86a5379bd51c7a1195fd5c5d36f94dfda (patch)
tree24eef18eb318b8d04e72f80094c94e95ab9f6ea3
parent97e6be5d5b218f537cf82f4ddf92007843001124 (diff)
Fix build on WinCE
Change-Id: Id252eeb0b140e58e74a84c97c9dde3f857f09d45 Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
-rw-r--r--src/plugins/scenegraph/softwarecontext/renderloop.cpp3
-rw-r--r--src/plugins/scenegraph/softwarecontext/threadedrenderloop.cpp1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/scenegraph/softwarecontext/renderloop.cpp b/src/plugins/scenegraph/softwarecontext/renderloop.cpp
index 934f646897..6cb655013f 100644
--- a/src/plugins/scenegraph/softwarecontext/renderloop.cpp
+++ b/src/plugins/scenegraph/softwarecontext/renderloop.cpp
@@ -20,6 +20,9 @@
#include "renderloop.h"
#include "context.h"
+
+#include <QtCore/QCoreApplication>
+
#include <private/qquickwindow_p.h>
#include <QElapsedTimer>
#include <private/qquickprofiler_p.h>
diff --git a/src/plugins/scenegraph/softwarecontext/threadedrenderloop.cpp b/src/plugins/scenegraph/softwarecontext/threadedrenderloop.cpp
index f323ad6879..9f255c28af 100644
--- a/src/plugins/scenegraph/softwarecontext/threadedrenderloop.cpp
+++ b/src/plugins/scenegraph/softwarecontext/threadedrenderloop.cpp
@@ -20,6 +20,7 @@
#include "threadedrenderloop.h"
+#include <QtCore/QCoreApplication>
#include <QtCore/QMutex>
#include <QtCore/QWaitCondition>
#include <QtCore/QAnimationDriver>