summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeproperty.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-6/+6
|
* QDeclarative::isWritable optimization.Michael Brasser2010-03-151-5/+3
|
* Improve value type binding behaviorAaron Kennedy2010-03-111-24/+40
| | | | | | | | | | | | | | 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
* doc: Fixed several qdoc errors.Martin Smith2010-03-091-1/+2
|
* doc: Fixed some QML qdoc errors.Martin Smith2010-03-051-27/+55
|
* Compile without QVariant::EasingCurve in Qt 4.6.2.Warwick Allison2010-03-041-3/+3
|
* QDeclarativeProperty::read() returns a QObjectStar when accessing a QObject ↵Aaron Kennedy2010-03-031-2/+9
| | | | | | property QT-2793
* DocAaron Kennedy2010-02-261-5/+45
|
* Polish QDeclarativeProperty APIAaron Kennedy2010-02-261-25/+86
|
* Remove unnecessary QDeclarativeProperty::Type enum valuesAaron Kennedy2010-02-261-20/+41
|
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlBea Lam2010-02-251-18/+2
| | | | | Conflicts: src/declarative/qml/qdeclarativeproperty.cpp
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-0/+1200
There's nothing meta about our properties.