summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage
Commit message (Collapse)AuthorAgeFilesLines
* Rename remaining import Qt 4.6 lines to import Qt 4.7Joona Petrell2010-04-141-7/+7
| | | | | Task-number: Reviewed-by: Martin Jones
* Use different ports for network tests to avoid clashes in parallel testing.Martin Jones2010-04-131-4/+4
|
* Tweak tests to run in parallelAaron Kennedy2010-04-131-0/+2
|
* Fix and test remote root component with qmldir-specified content.Warwick Allison2010-04-133-2/+39
| | | | 6ed43975f6733265b8b91b00a9a212076d896ef9 was not correct fix (just invalidated the test)
* Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-0914-22/+22
|
* Improve static assignment to QVariant's in the int and double caseAaron Kennedy2010-04-082-0/+46
|
* Test import of a script requires qualifier.Warwick Allison2010-04-083-0/+6
|
* Remove error-tests of obsolete Script element.Warwick Allison2010-04-0825-120/+0
|
* Remove usage of Script where not actually testing the obsolete construct.Warwick Allison2010-04-081-6/+3
|
* Give error if attempt to import from a version that is not installed.Warwick Allison2010-04-081-3/+8
| | | | | | (was done for builtins/plugins, but now also for qmldir-specified content) Task-number: QTBUG-9627
* Test actual error messages. Fix error messages. Test module-not-available error.Warwick Allison2010-04-081-57/+129
|
* import "." first - i.e. override it by everything else.Warwick Allison2010-04-014-0/+12
| | | | Otherwise, simple things break, like having "image.qml" on a case-insensitive file system.
* Fixed: Declared properties cannot be assigned in declarationRoberto Raggi2010-03-311-1/+0
| | | | Task-number: QTBUG-7860
* Remove "variant" QML propertiesAaron Kennedy2010-03-292-2/+0
| | | | "property var a" works just as well
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-03-253-1/+11
|\
| * Remove faulty assert - the precondition is checked for correctly later onAaron Kennedy2010-03-253-1/+11
| | | | | | | | Task-number: QTBUG-9336
* | Tweak import behaviourAlan Alpert2010-03-251-2/+2
|/ | | | | | | | | | | | | The implicit import of types in the same directory/module now imports version -1 (which means all versions). This fixes the Twitter demo. Additionally, the current directory is not added to the imports path. No functionality is lost, as you can import local modules with relative paths for the same effect. Improved docs are on the way. Reviewed-by: mae
* Make more tests compile on solaris-ccAlan Alpert2010-03-231-4/+4
|
* Manual merge.Warwick Allison2010-03-225-0/+12
|
* Fix test.Michael Brasser2010-03-223-1/+20
| | | | | Use a custom type to test this language feature, rather than PropertyChanges.
* Fix local type lookupmae2010-03-196-2/+10
| | | | | | This change removes the hacky final baseUrl+TypeName+".qml" lookup. In order to still support internal files in remote modules, a new qmldir keyword "internal" is introduced.
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt into 4.7Martin Jones2010-03-191-37/+37
|\ | | | | | | | | Conflicts: tests/auto/declarative/qdeclarativeecmascript/testtypes.h
| * Remove ; after Q_PROPERTY declarationThierry Bastian2010-03-181-35/+35
| |
| * Fix compilation issues of autotest on solarisThierry Bastian2010-03-181-2/+2
| | | | | | | | Task-number: QTBUG-8590
* | Compile fix after e5922ab126f3532483b18720ce893d6be826d50eAaron Kennedy2010-03-112-15/+15
| |
* | Use no-version-specified to mean any version (used to work, fixed again,Warwick Allison2010-03-102-4/+4
|/ | | | was only working with -1.-1 which looks silly)
* Disallow upper case property, signal and method names in QMLAaron Kennedy2010-03-089-0/+31
| | | | QT-2976
* 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.