aboutsummaryrefslogtreecommitdiffstats
path: root/dist/changes-5.3.0
Commit message (Collapse)AuthorAgeFilesLines
* Add [ChangeLog] tags to qtdeclarative changelog.Alan Alpert2014-05-021-34/+54
| | | | | Change-Id: Ia235b6b2397cfaeb20f0c7ea0d6196c603b2aaaa Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* Update QQuickWidget docs and changelogLaszlo Agocs2014-02-201-0/+6
| | | | | Change-Id: I853295f31cf9367a8e11157c9ef0764174c614cf Reviewed-by: Gunnar Sletta <gunnar.sletta@jollamobile.com>
* Change C++ parameter type used for var parameters in QML declared signalsSimon Hausmann2013-12-241-0/+68
"signal someSignal(var foo)" mapped to foo being of type QVariant. Unfortunately that is a "lossy" type and it cannot represent all JavaScript values, including for example function closures (as reported in the JIRA bug). Instead we should use QJSValue. It is an important behavioural change because it affects the presumably rare case of somebody declaring a signal in QML with such a parameter and connect to it from C++ (or trying to emit it) - in that situation the code needs to be changed. Task-number: QTBUG-35171 Change-Id: I4fb4a18b407e4ea6c28a3a297fc6f76edb76d734 Reviewed-by: Lars Knoll <lars.knoll@digia.com>