summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcompiler.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-04-29 04:32:41 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-04-29 04:32:41 (GMT)
commit03e18459dbe8dabc6b504ea675260e23c9540f6c (patch)
tree6e2efd0848404ffb2d4223d0edbf091084f2b342 /src/declarative/qml/qmlcompiler.cpp
parentdc5a2f46bd9676e69ed81d0b83199a533d1fca21 (diff)
downloadQt-03e18459dbe8dabc6b504ea675260e23c9540f6c.zip
Qt-03e18459dbe8dabc6b504ea675260e23c9540f6c.tar.gz
Qt-03e18459dbe8dabc6b504ea675260e23c9540f6c.tar.bz2
Re-enable property syntax and add a "default" specifier
Diffstat (limited to 'src/declarative/qml/qmlcompiler.cpp')
-rw-r--r--src/declarative/qml/qmlcompiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlcompiler.cpp b/src/declarative/qml/qmlcompiler.cpp
index fae0f43..4cfe1e8 100644
--- a/src/declarative/qml/qmlcompiler.cpp
+++ b/src/declarative/qml/qmlcompiler.cpp
@@ -1351,7 +1351,7 @@ bool QmlCompiler::findDynamicProperties(QmlParser::Property *prop,
definedProperties << propDef;
}
- obj->dynamicProperties = definedProperties;
+ obj->dynamicProperties << definedProperties;
return true;
}
@@ -1407,7 +1407,7 @@ bool QmlCompiler::findDynamicSignals(QmlParser::Property *sigs,
definedSignals << sigDef;
}
- obj->dynamicSignals = definedSignals;
+ obj->dynamicSignals << definedSignals;
return true;
}