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/qmlcompiler_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/qmlcompiler_p.h')
-rw-r--r-- | src/declarative/qml/qmlcompiler_p.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/declarative/qml/qmlcompiler_p.h b/src/declarative/qml/qmlcompiler_p.h index cc1a9e9..4acdcfa 100644 --- a/src/declarative/qml/qmlcompiler_p.h +++ b/src/declarative/qml/qmlcompiler_p.h @@ -163,11 +163,6 @@ private: QmlParser::Value *value, int ctxt); - bool findDynamicProperties(QmlParser::Property *prop, - QmlParser::Object *obj); - bool findDynamicSignals(QmlParser::Property *sigs, - QmlParser::Object *obj); - bool compileDynamicPropertiesAndSignals(QmlParser::Object *obj); void compileBinding(const QString &, QmlParser::Property *prop, int ctxt, const QMetaObject *, qint64); |