summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlparser_p.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-05-28 03:25:31 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-05-28 03:25:31 (GMT)
commit1090d5d1fad890d9f43e87e19277e1f624921d6d (patch)
tree7420c5469b0cc509a67fccab86e434a71faf97ec /src/declarative/qml/qmlparser_p.h
parent4587282af7bfb9f6b1a8329651073bb4127c62b8 (diff)
downloadQt-1090d5d1fad890d9f43e87e19277e1f624921d6d.zip
Qt-1090d5d1fad890d9f43e87e19277e1f624921d6d.tar.gz
Qt-1090d5d1fad890d9f43e87e19277e1f624921d6d.tar.bz2
Delay the compilation of bindings until the end
This way we have a better understanding of the complete context in which the binding will be executed.
Diffstat (limited to 'src/declarative/qml/qmlparser_p.h')
-rw-r--r--src/declarative/qml/qmlparser_p.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlparser_p.h b/src/declarative/qml/qmlparser_p.h
index cb9b540..020cae5 100644
--- a/src/declarative/qml/qmlparser_p.h
+++ b/src/declarative/qml/qmlparser_p.h
@@ -252,6 +252,9 @@ namespace QmlParser
Property(const QByteArray &n);
virtual ~Property();
+ // The Object to which this property is attached
+ Object *parent;
+
Object *getValue();
void addValue(Value *v);