aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-12-15 10:38:09 +0100
committerLiang Qi <liang.qi@qt.io>2016-12-15 12:54:37 +0000
commitad20f3fc804d5aac9b727ce1ceda429264087218 (patch)
treec91fc3add07846188a82e0fd41aafc42d5b7c44b /src
parente2cf98bcedb65c1c28eaaa8e045523cb0857fa9e (diff)
qquickstackview_p.cpp: add missing include
The actual header that should be included is qv4qmlcontext_p.h, but this is a new header in qtdeclarative that is not yet available in qt5 meta repo. Therefore we temporarily include another header to get an indirect include of qv4qmlcontext_p.h to fix the build break and get qt5 integrated. Change-Id: If12e5d7652a9710420f08fe4c6bff364f65656a4 Reviewed-by: J-P Nurmi <jpnurmi@qt.io> Reviewed-by: Liang Qi <liang.qi@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/quicktemplates2/qquickstackview_p.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/quicktemplates2/qquickstackview_p.cpp b/src/quicktemplates2/qquickstackview_p.cpp
index 1254ab62..1b6cf799 100644
--- a/src/quicktemplates2/qquickstackview_p.cpp
+++ b/src/quicktemplates2/qquickstackview_p.cpp
@@ -39,6 +39,7 @@
#include "qquickstacktransition_p_p.h"
#include <QtQml/qqmllist.h>
+#include <QtQml/private/qv4script_p.h> // TODO: replace with qv4qmlcontext_p.h
#include <QtQml/private/qv4qobjectwrapper_p.h>
#include <QtQuick/private/qquickanimation_p.h>
#include <QtQuick/private/qquicktransition_p.h>