aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlobjectcreator_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-02-06 16:33:15 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-07 12:44:10 +0100
commit324ae0d7d99ef9f7159d29b2e0e7eabe5f8a43a4 (patch)
tree9576687c7580065e819392a3be6250dcf6e0c07c /src/qml/qml/qqmlobjectcreator_p.h
parent50ce88a53107f97664d928719c1877b8077e9a2e (diff)
[new compiler] Allow for interruption during object finalization
The object tree construction and binding allocation remains synchronous, but the initial evaluation of the bindings is now cooperatively interruptible again, like in the VME. Change-Id: Idd037dd481782c81ad43e20e93d922eb12ac8b85 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlobjectcreator_p.h')
-rw-r--r--src/qml/qml/qqmlobjectcreator_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlobjectcreator_p.h b/src/qml/qml/qqmlobjectcreator_p.h
index cb23f61c84..7ed75670c2 100644
--- a/src/qml/qml/qqmlobjectcreator_p.h
+++ b/src/qml/qml/qqmlobjectcreator_p.h
@@ -52,6 +52,7 @@ QT_BEGIN_NAMESPACE
class QQmlAbstractBinding;
struct QQmlTypeCompiler;
+class QQmlInstantiationInterrupt;
class QmlObjectCreator
{
@@ -62,7 +63,7 @@ public:
~QmlObjectCreator();
QObject *create(int subComponentIndex = -1, QObject *parent = 0);
- QQmlContextData *finalize();
+ QQmlContextData *finalize(QQmlInstantiationInterrupt &interrupt);
QQmlComponentAttached *componentAttached;
QList<QQmlEnginePrivate::FinalizeCallback> finalizeCallbacks;