diff options
author | Albert Astals Cid <albert.astals@canonical.com> | 2013-05-15 17:28:35 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-05-29 08:23:09 +0200 |
commit | 3414cc6c7a4e021ec2c9a4f369acc2a0a0568c58 (patch) | |
tree | d7e6ebf8d60d12623ed349bdbe7f1fe4b33ecdbf /dist | |
parent | 114c9a16e240558a8aea2004696369e78ef5ac80 (diff) | |
download | qtdeclarative-3414cc6c7a4e021ec2c9a4f369acc2a0a0568c58.tar.gz |
Make sure tryCompare value argument is not undefined
It happens often that people convert a
compare(foo.bar, 3)
to a
tryCompare(foo.bar, 3)
and unfortunately that succeeds but doesn't do what they expected
This makes tryCompare fail if no third argument is given
Task-number: QTBUG-31427
Change-Id: I0c9618dae9aad4be55aa35c3e2dcf3535728beaa
Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'dist')
-rw-r--r-- | dist/changes-5.1.0 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dist/changes-5.1.0 b/dist/changes-5.1.0 index 50bdc2f9f8..8633d22eef 100644 --- a/dist/changes-5.1.0 +++ b/dist/changes-5.1.0 @@ -43,6 +43,9 @@ Third party components as count, which are based off of the data model will no longer update immediately if queried. Updates are batched to happen once per frame (or when properties are being set). + + - tryCompare now correctly fails when it only gets two parameters + **************************************************************************** * Library * **************************************************************************** |