summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeparser.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-131-17/+17
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Fix compilation on INTEGRITYRolland Dudemaine2011-02-221-2/+2
| | | | | | | "Value" and "Object" are reserved words on INTEGRITY Merge-request: 1101 Reviewed-by: Harald Fernengel <harald.fernengel@nokia.com>
* Implement property versioning inside the declarative engineAaron Kennedy2011-01-271-1/+2
| | | | Task-number: QTBUG-13451
* Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | Reviewed-by: Trust Me
* Improve consistency in handling of aliases, bindings and value typesAaron Kennedy2010-11-291-2/+2
| | | | Task-number: QTBUG-13719
* Make sure strings are escaped when returned via asScript.Michael Brasser2010-05-181-0/+45
| | | | Makes 273024e58d90bb9b3a5da0161f884f1af22d75df more correct.
* Remove Script {} supportAaron Kennedy2010-04-191-2/+0
|
* Cleanup handling of errors in bindings and scriptsAaron Kennedy2010-04-081-1/+1
| | | | | | | | | | | | | QML used to silently ignore a log of errors - such as a failed assignment to a QObject property. These errors are now all reported as exceptions in JavaScript. Other questionable activities, like assigning a JavaScript array to a "property var" property which appeared to work, thanks to QtScript's transparent conversion of arrays to a QVariantList, are now blocked entirely. QTBUG-9152 QTBUG-9382 QTBUG-9341 QTBUG-6886
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-6/+6
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Remove dead performance measurement code from QMLAaron Kennedy2010-03-221-2/+0
|
* Reenable the QML binding optimizer for "safe" optimizationsAaron Kennedy2010-03-121-2/+3
|
* Improve grouped property error messagesAaron Kennedy2010-03-041-2/+2
| | | | QT-2579
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-021-1/+8
| | | | | | | | | | | | | | | | | | | | | 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/+387
QDeclarativeXXX.