Skip to content
Snippets Groups Projects
Commit e34ae97d authored by Marco Bubke's avatar Marco Bubke Committed by Kai Koehne
Browse files

Set the context explicit for a property in the property change

Reviewed-by: kkoehne
Task-Number: BAUHAUS-573
parent 4a89a077
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ void QmlPropertyChangesObject::setIsExplicit(bool isExplicit)
QDeclarativeProperty QmlPropertyChangesObject::createMetaProperty(const QString &property)
{
QDeclarativeProperty prop(m_targetObject.data(), property);
QDeclarativeProperty prop(m_targetObject.data(), property, QDeclarativeEngine::contextForObject(m_targetObject.data()));
if (!prop.isValid()) {
qWarning() << "Cannot assign to non-existent property" << property;
return QDeclarativeProperty();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment