aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmldelayedcallqueue_p.h
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@live.com>2016-04-12 20:15:42 -0500
committerMichael Brasser <michael.brasser@live.com>2016-04-13 11:16:44 +0000
commit8a546b889e14aad7202dc198bc9fe942ef7e94a6 (patch)
treeb93dfea21b87255195de992b835819080b90c613 /src/qml/qml/qqmldelayedcallqueue_p.h
parentd146a75bf0d5307c63a8d495a691a973f6807a32 (diff)
Update DelayedFunctionCall to use an array object.
Change-Id: I9ffaa95ab58eff14abaf3573f5aa0d351ac0624d Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/qml/qqmldelayedcallqueue_p.h')
-rw-r--r--src/qml/qml/qqmldelayedcallqueue_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmldelayedcallqueue_p.h b/src/qml/qml/qqmldelayedcallqueue_p.h
index 7eb014cfdf..ef899170a2 100644
--- a/src/qml/qml/qqmldelayedcallqueue_p.h
+++ b/src/qml/qml/qqmldelayedcallqueue_p.h
@@ -85,7 +85,7 @@ private:
void execute(QV4::ExecutionEngine *engine) const;
QV4::PersistentValue m_function;
- QList<QV4::PersistentValue> m_args;
+ QV4::PersistentValue m_args;
QQmlGuard<QObject> m_objectGuard;
bool m_guarded;
};