summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeproperty_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-2/+2
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-3/+3
|
* 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
* Fix visibility of classes in private headers upon which Bauhaus/Creator relies.Warwick Allison2010-03-031-1/+1
| | | | Author: Erik Verbruggen
* Polish QDeclarativeProperty APIAaron Kennedy2010-02-261-4/+5
|
* Remove unnecessary QDeclarativeProperty::Type enum valuesAaron Kennedy2010-02-261-0/+1
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-0/+140
There's nothing meta about our properties.