diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-05 04:05:03 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-05 04:05:03 (GMT) |
commit | d778d86065e08cf55fdf70a491f17c61ff93705c (patch) | |
tree | d71824a3074aa572485f97b8582bf0fcf5a0b308 /src/declarative/qml/qmlparser_p.h | |
parent | f062be7569804461dad94d5b80dc0b87298fd5eb (diff) | |
download | Qt-d778d86065e08cf55fdf70a491f17c61ff93705c.zip Qt-d778d86065e08cf55fdf70a491f17c61ff93705c.tar.gz Qt-d778d86065e08cf55fdf70a491f17c61ff93705c.tar.bz2 |
Remove magic "properties" and "signals" property support
New properties and signals should be defined using the QML syntax:
[default] property <type> <name> [: <expr>]
signal <name>
Diffstat (limited to 'src/declarative/qml/qmlparser_p.h')
-rw-r--r-- | src/declarative/qml/qmlparser_p.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/declarative/qml/qmlparser_p.h b/src/declarative/qml/qmlparser_p.h index 17b367d6..aeacee8 100644 --- a/src/declarative/qml/qmlparser_p.h +++ b/src/declarative/qml/qmlparser_p.h @@ -124,10 +124,6 @@ namespace QmlParser QByteArray name; }; - // The "properties" property - Property *dynamicPropertiesProperty; - // The "signals" property - Property *dynamicSignalsProperty; // The list of dynamic properties described in the "properties" property QList<DynamicProperty> dynamicProperties; // The list of dynamic signals described in the "signals" property |