diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-04 08:12:45 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-04 08:13:33 (GMT) |
commit | 6633234f5f19899dc54510b2bddb2ae1afd38318 (patch) | |
tree | e432c4b1a18a2019caa83efb985c765cd6481ce0 /src/declarative/qml/qdeclarativecompiler_p.h | |
parent | 15f0fb150b924b890a8285fda8f10134f76d263c (diff) | |
download | Qt-6633234f5f19899dc54510b2bddb2ae1afd38318.zip Qt-6633234f5f19899dc54510b2bddb2ae1afd38318.tar.gz Qt-6633234f5f19899dc54510b2bddb2ae1afd38318.tar.bz2 |
Run signal expressions on attached property objects in correct scope
QTBUG-8677
Diffstat (limited to 'src/declarative/qml/qdeclarativecompiler_p.h')
-rw-r--r-- | src/declarative/qml/qdeclarativecompiler_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/qml/qdeclarativecompiler_p.h b/src/declarative/qml/qdeclarativecompiler_p.h index f8ada95..cca42e2 100644 --- a/src/declarative/qml/qdeclarativecompiler_p.h +++ b/src/declarative/qml/qdeclarativecompiler_p.h @@ -307,6 +307,7 @@ private: QByteArray compiledBindingData; QHash<QDeclarativeParser::Value *, BindingReference> bindings; + QHash<QDeclarativeParser::Value *, BindingContext> signalExpressions; QList<QDeclarativeParser::Object *> aliasingObjects; QDeclarativeParser::Object *root; }; |