summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativedom.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Doc: Fixed invalid/incomplete QML code snippets.David Boddie2011-01-171-4/+4
|
* Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | Reviewed-by: Trust Me
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-291-1/+1
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Simplify type management codeAaron Kennedy2010-08-271-25/+10
|
* Make autotests work with qreal == float (in addition to double).Warwick Allison2010-07-021-1/+1
| | | | Task-number: QTBUG-11853
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-8/+8
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Fix qdeclarativedom::loadDynamicProperty testAaron Kennedy2010-03-301-0/+6
|
* Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-251-2/+2
| | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops.
* Replace Animation's repeat property with loops.Michael Brasser2010-03-251-4/+2
| | | | | You can now loop a fixed number of times as well as forever. The old repeat behavior (loop forever) can be acheived with loops: Qt.Infinite.
* 'on' syntax fixesYann Bodson2010-03-031-4/+4
|
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-021-2/+12
| | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+1836
QDeclarativeXXX.