summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/parser/qdeclarativejs.g
Commit message (Collapse)AuthorAgeFilesLines
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-9/+9
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Fixed: Declared properties cannot be assigned in declarationRoberto Raggi2010-03-311-0/+50
| | | | Task-number: QTBUG-7860
* Removed unneeded code.Roberto Raggi2010-03-291-5/+0
|
* Recompute the source location of regexp literals.Roberto Raggi2010-03-261-1/+7
| | | | Task-number: QTBUG-9367
* Manual merge.Warwick Allison2010-03-221-1/+3
|
* Fix grammar stringifying "on" as "readonly"Aaron Kennedy2010-03-041-1/+1
| | | | QTBUG-8676
* Don't look for contextual keywords when defining properties.Roberto Raggi2010-02-251-12/+12
|
* Introduced alternative syntax for defining QML bindings.Roberto Raggi2010-02-251-0/+21
| | | | | | | | | | | | | | | Now it is possible to define bindings using the `on' context keyword. For example, you can write Behavior on opacity { NumberAnimation { duration: 500 } } instead of opacity: Behavior { NumberAnimation { duration: 500 } }
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+3075
QDeclarativeXXX.