summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage
Commit message (Collapse)AuthorAgeFilesLines
* Allow unquoted enum syntax for value typesAaron Kennedy2010-03-053-0/+6
| | | | QTBUG-5424
* Run signal expressions on attached property objects in correct scopeAaron Kennedy2010-03-042-7/+0
| | | | QTBUG-8677
* Fix grammar stringifying "on" as "readonly"Aaron Kennedy2010-03-042-0/+22
| | | | QTBUG-8676
* Improve grouped property error messagesAaron Kennedy2010-03-048-1/+26
| | | | QT-2579
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-03-0341-18/+138
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (64 commits) More renaming: MouseRegion -> MouseArea Save secondary scope inside the expression's scope object 'on' syntax fixes QDeclarativeProperty::read() returns a QObjectStar when accessing a QObject property Move JS global scope to top of the QML scope chain Add documentation for the 'when' property of Binding. Auto test for QTBUG-8677 QDeclarativeGuard should handle objects being deleted OS-friendlier, less noisy. fix crash, re-enable settings test Fix incorrect scope resolution for script in a script block. Disable until plugin objects problem resolved. silence debuggery add colorbrowser qml example Fix settings (was not exported type). Add import Qt.widgets 4.6 to layout.qml example make runnable from elsewhere remove debugger runnable from elsewhere Ensure error is received - the root object is INITIALLY zero. ...
| * Move JS global scope to top of the QML scope chainAaron Kennedy2010-03-0310-6/+24
| | | | | | | | QT-2787
| * Auto test for QTBUG-8677Martin Jones2010-03-033-2/+12
| |
| * Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-0231-10/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Fixed compile of some tests with `-qtnamespace'Rohan McGovern2010-03-031-0/+3
|/
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-252-8/+8
| | | | There's nothing meta about our properties.
* Remove QDeclarativeMetaProperty::createProperty() methodAaron Kennedy2010-02-251-1/+1
| | | | | The behavior of createProperty() (to resolve dot properties) is now the behavior of the constructors.
* Make QDeclarativeMetaType and QDeclarativeType privateAaron Kennedy2010-02-241-1/+3
|
* Fixup tests after QDeclarative class renamesAaron Kennedy2010-02-243-1/+1
|
* Simplify QML element registration headersAaron Kennedy2010-02-242-0/+2
|
* Make compile following renaming of class.Bea Lam2010-02-241-1/+1
|
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlBea Lam2010-02-242-59/+59
|\
| * Change autotest class prefix from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX ↵Leonardo Sobral Cunha2010-02-242-59/+59
| | | | | | | | to QDeclarativeXXX.
* | Automatically connect to a notify signal if the requested signal isBea Lam2010-02-243-0/+29
|/ | | | | | | in the "onFooChanged" form, even if the notify signal is not called "fooChanged". Task-number: QT-2783
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-24290-0/+3301
QDeclarativeXXX.