summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeobjectscriptclass.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove warningsYann Bodson2010-03-181-29/+30
|
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-11/+7
|
* Fix crash on 32-bit platformsAaron Kennedy2010-03-121-1/+1
|
* Improve value type binding behaviorAaron Kennedy2010-03-111-1/+2
| | | | | | | | | | | | | | Changing value type bindings in state changes, and implicitly removing them on property assignment was not reliable. Internally the system considered a binding on "font" and one on "font.x" as a binding on two separate properties, even though the "font" binding completely overrides the "font.x" property. Following this change a binding to "font.x" creates a proxy binding object on the "font" property in addition to the "font.x" binding itself. This allows behavior to be consistent across all operations. QT-2920
* Add QML support for methods returning QList<QObject *>Aaron Kennedy2010-03-091-35/+55
|
* Integrate QML's object ownership with the JS collectorAaron Kennedy2010-03-091-14/+51
| | | | | | | QML now behaves in a way similar to QtScript when it comes to QObject ownership. QT-2803
* Add support for QtScript connect/disconnect syntax in QMLAaron Kennedy2010-03-051-0/+81
| | | | | | | This support was accidentally removed as a consequence of 4a665ff5da05860f5eb46e3982ef3d8163a6cf59. QTBUG-8001
* Compile without QVariant::EasingCurve in Qt 4.6.2.Warwick Allison2010-03-041-1/+1
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-2/+2
| | | | There's nothing meta about our properties.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+673
QDeclarativeXXX.