Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix compile warnings. | Friedemann Kleint | 2010-09-14 | 1 | -1/+1 |
| | | | | Reviewed-by: Thomas Hartmann <thomas.hartmann@nokia.com> | ||||
* | Simplify type management code | Aaron Kennedy | 2010-08-27 | 1 | -6/+0 |
| | |||||
* | QML JavaScript .import parser | Aaron Kennedy | 2010-08-27 | 1 | -0/+211 |
| | |||||
* | Fix few declarative code issues discovered by static code analysis | Joona Petrell | 2010-08-24 | 1 | -1/+1 |
| | | | | | Task-number: Reviewed-by: Aaron Kennedy | ||||
* | Correcting spelling mistakes in documentation. Part of fix for QTBUG-11938. | Jerome Pasion | 2010-08-09 | 1 | -1/+1 |
| | | | | | Reviewer: David Boddie Task number: QTBUG-11938 | ||||
* | Fix compilation with QT_NO_TEXTCODEC | Tasuku Suzuki | 2010-07-29 | 1 | -0/+2 |
| | | | | | Merge-request: 755 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | ||||
* | Fix compiler warning | Aaron Kennedy | 2010-07-22 | 1 | -2/+0 |
| | |||||
* | Reuse QML lexer to simplify .pragma script logic | Aaron Kennedy | 2010-07-22 | 1 | -62/+37 |
| | |||||
* | Small cleanups | Aaron Kennedy | 2010-04-28 | 1 | -56/+19 |
| | |||||
* | Disallow "Qt" as namespace import | Aaron Kennedy | 2010-04-27 | 1 | -0/+8 |
| | | | | | | This conflicts with the global object's "Qt" property. QTBUG-10143 | ||||
* | Remove "property var" support | Aaron Kennedy | 2010-04-19 | 1 | -6/+0 |
| | |||||
* | Remove Script {} support | Aaron Kennedy | 2010-04-19 | 1 | -73/+21 |
| | |||||
* | unwarn | Warwick Allison | 2010-04-09 | 1 | -1/+1 |
| | |||||
* | Use variant instead of var in QML | Aaron Kennedy | 2010-04-09 | 1 | -2/+9 |
| | | | | | | In QML "var"s are not the same as JavaScript vars - they are QVariants instead. However, as they behave in a similar enough fashion to native JavaScript it can be confusing to developers when they are called "var". | ||||
* | Cleanup handling of errors in bindings and scripts | Aaron Kennedy | 2010-04-08 | 1 | -0/+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 | ||||
* | Fix location of error message. | Warwick Allison | 2010-04-08 | 1 | -2/+2 |
| | |||||
* | Update #include of private headers in QtDeclarative | Thiago Macieira | 2010-04-02 | 1 | -3/+3 |
| | | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason. | ||||
* | Fixed: Declared properties cannot be assigned in declaration | Roberto Raggi | 2010-03-31 | 1 | -5/+8 |
| | | | | Task-number: QTBUG-7860 | ||||
* | Remove "variant" QML properties | Aaron Kennedy | 2010-03-29 | 1 | -2/+1 |
| | | | | "property var a" works just as well | ||||
* | Use QDateTime when specifying a "date" property in QML | Aaron Kennedy | 2010-03-29 | 1 | -1/+7 |
| | | | | QT-718 | ||||
* | Deprecate inline Script {} blocks | Aaron Kennedy | 2010-03-22 | 1 | -4/+126 |
| | | | | | | | | Inline blocks/includes have been replaced with an import syntax: import "foo.js" as Foo this gives better separation between QML and code. Imported script blocks also have a mandatory qualifier, which leads to better optimization potential. | ||||
* | Remove dead performance measurement code from QML | Aaron Kennedy | 2010-03-22 | 1 | -5/+0 |
| | |||||
* | Improve grouped property error messages | Aaron Kennedy | 2010-03-04 | 1 | -2/+2 |
| | | | | QT-2579 | ||||
* | Make "on" syntax mandatory for value sources and interceptors | Aaron Kennedy | 2010-03-02 | 1 | -17/+49 |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Fixup tests after QDeclarative class renames | Aaron Kennedy | 2010-02-24 | 1 | -1/+1 |
| | |||||
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 1 | -0/+952 |
QDeclarativeXXX. |