aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/types/qqmllistmodel.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2014-12-30 11:54:59 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2015-01-02 21:10:50 +0100
commitb9b12af83f121cdbc9bb1d3067bfb9e4ba923088 (patch)
treeea39babccfddd814647c6852b597cad771a7d0b9 /src/qml/types/qqmllistmodel.cpp
parent2056538feab7739689742de4efe370b35864bc9a (diff)
Remove v8engine dependency in fromVariant conversions
Change-Id: I3427129dc7a0e68c8fa0b61f353835e2bee179a0 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/types/qqmllistmodel.cpp')
-rw-r--r--src/qml/types/qqmllistmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/types/qqmllistmodel.cpp b/src/qml/types/qqmllistmodel.cpp
index 083bbd6f1c..bac6aedcb2 100644
--- a/src/qml/types/qqmllistmodel.cpp
+++ b/src/qml/types/qqmllistmodel.cpp
@@ -1264,7 +1264,7 @@ void ModelNodeMetaObject::propertyWritten(int index)
QVariant value = operator[](index);
QV4::Scope scope(QV8Engine::getV4((eng)));
- QV4::ScopedValue v(scope, eng->fromVariant(value));
+ QV4::ScopedValue v(scope, QV8Engine::fromVariant(scope.engine, value));
int roleIndex = m_obj->m_model->m_listModel->setExistingProperty(m_obj->m_elementIndex, propName, v, eng);
if (roleIndex != -1) {