Skip to content
Snippets Groups Projects
Commit fcb91a70 authored by Erik Verbruggen's avatar Erik Verbruggen
Browse files

Fixes to get the QML designer to compile against qt-qml.

parent a6b1fb94
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ QmlStateOperation::ActionList QmlPropertyChangesObject::actions()
ActionList list;
foreach (const QString &property, m_properties.keys()) {
Action a(m_targetObject.data(), property, m_properties.value(property));
QmlAction a(m_targetObject.data(), property, m_properties.value(property));
if (a.property.isValid()) {
a.restore = restoreEntryValues();
......@@ -78,7 +78,7 @@ QmlStateOperation::ActionList QmlPropertyChangesObject::actions()
QmlMetaProperty mProperty = metaProperty(property);
if (mProperty.isValid()) {
Action a;
QmlAction a;
a.restore = restoreEntryValues();
a.property = mProperty;
a.fromValue = a.property.read();
......
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