diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-05-11 03:33:09 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-05-11 03:33:09 (GMT) |
commit | 62ca28e8bfd469a227f7099eb0c2e76b0b2cb2e8 (patch) | |
tree | a5f352d68c6fad08fd6fbf0ecffe107a202eb74a /src/declarative/qml/qmlbindablevalue_p.h | |
parent | 33b6ff260ff5454bf65a307535994d168d0dd10a (diff) | |
download | Qt-62ca28e8bfd469a227f7099eb0c2e76b0b2cb2e8.zip Qt-62ca28e8bfd469a227f7099eb0c2e76b0b2cb2e8.tar.gz Qt-62ca28e8bfd469a227f7099eb0c2e76b0b2cb2e8.tar.bz2 |
Detect binding loops.
Don't crash when a looping binding has been established. Instead, print
a warning and stop looping.
Diffstat (limited to 'src/declarative/qml/qmlbindablevalue_p.h')
-rw-r--r-- | src/declarative/qml/qmlbindablevalue_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlbindablevalue_p.h b/src/declarative/qml/qmlbindablevalue_p.h index 70c001b..d9af0ef 100644 --- a/src/declarative/qml/qmlbindablevalue_p.h +++ b/src/declarative/qml/qmlbindablevalue_p.h @@ -55,6 +55,7 @@ public: QmlBindableValuePrivate(); bool inited; + bool updating; QmlMetaProperty property; QmlBindableValue **mePtr; |