summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativebinding_p.h
Commit message (Collapse)AuthorAgeFilesLines
* QtDeclarative: remove spurious semi-colons from the source codeThiago Macieira2010-05-041-1/+1
|
* Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeDataAaron Kennedy2010-04-151-1/+1
|
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-1/+1
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Make it harder to accidentally delete a bindingAaron Kennedy2010-03-181-5/+7
|
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-2/+3
|
* Improve value type binding behaviorAaron Kennedy2010-03-111-0/+28
| | | | | | | | | | | | | | 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-2/+2
| | | | Author: Erik Verbruggen
* compile fix with namespaceshjk2010-03-011-1/+2
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-13/+13
| | | | There's nothing meta about our properties.
* Make more private QDeclarativeMetaProperty methods privateAaron Kennedy2010-02-251-7/+8
|
* Simplify QML element registration headersAaron Kennedy2010-02-241-0/+1
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+135
QDeclarativeXXX.