summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers to release version.Jason McDonald2010-10-183-39/+39
|
* Add test for Qt 4.7 moduleAaron Kennedy2010-10-011-0/+6
| | | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones (cherry picked from commit 6f35701275ab0cd80daec45b3407725b10571693)
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Jason McDonald2010-10-01118-127/+127
| | | | | | | | | | | | | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones (cherry picked from commit 49452ad6b22e080b1dfdfde38c21c48bb910a1ae) Conflicts: tests/auto/declarative/qdeclarativeconnection/data/error-object.qml tests/auto/declarative/qdeclarativeconnection/data/error-property.qml tests/auto/declarative/qdeclarativeconnection/data/error-property2.qml tests/auto/declarative/qdeclarativeconnection/data/error-syntax.qml tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp tests/auto/declarative/qdeclarativeqt/data/quit.qml tests/auto/declarative/qdeclarativeview/data/error1.qml
* Missing fileAaron Kennedy2010-09-031-0/+14
|
* Don't modify the signal order on the second dynamic meta object passAaron Kennedy2010-09-031-0/+12
| | | | QTBUG-13374
* Only emit change signal when variant properties actually changeAaron Kennedy2010-09-012-1/+28
| | | | QTBUG-12601
* Ignore non-scriptable properties in QMLAaron Kennedy2010-08-316-0/+19
| | | | QTBUG-13043
* Don't double call classBegin()Aaron Kennedy2010-08-315-1/+41
| | | | QTBUG-13114
* Simplify type management codeAaron Kennedy2010-08-271-1/+1
|
* Fix inconsistent reporting of module import errors when using versions.Warwick Allison2010-07-055-3/+13
| | | | Task-number: QTBUG-11936
* Make autotests work with qreal == float (in addition to double).Warwick Allison2010-07-022-2/+2
| | | | Task-number: QTBUG-11853
* Don't accept *files* that exist when *directory* is required.Warwick Allison2010-07-023-0/+5
|
* Disallow global object properties as property namesAaron Kennedy2010-06-253-0/+7
| | | | QTBUG-11605
* Make declarative autotests compile on Symbian abld build systemJoona Petrell2010-06-082-2/+6
| | | | | Task-number: Reviewed-by: Martin Jones
* Autotest (XFAIL) for QTBUG-10822Aaron Kennedy2010-05-202-0/+22
|
* Prevent assignment of values (string, number, bool) to signal handlers.Michael Brasser2010-05-186-8/+7
| | | | | Task-number: QTBUG-10764 Reviewed-by: Aaron Kennedy
* Make sure strings are escaped when returned via asScript.Michael Brasser2010-05-183-5/+5
| | | | Makes 273024e58d90bb9b3a5da0161f884f1af22d75df more correct.
* Rename files; fix test.Michael Brasser2010-05-184-3/+4
|
* Use QDeclarativeScriptString for ParentChange.Michael Brasser2010-05-184-12/+56
| | | | | | | So that scope resolution is correct, e.g. "width: parent.width-10;" in a ParentChange works correctly. Task-number: QTBUG-10675
* Symbian build fix to declarative auto and benchmark testsJoona Petrell2010-05-141-1/+8
| | | | | Task-number: QTBUG-9491 Reviewed-by: Martin Jones
* Correctly assign bool to variant propertiesAaron Kennedy2010-05-122-0/+6
| | | | QTBUG-10623
* Make QDeclarativeParserStatus method pure virtual to encourage right code.Warwick Allison2010-04-301-2/+2
| | | | | Fix all code to be right, except multimedia. Currently, it's not *required* that types work without componentComplete, so not vital.
* Disallow "Qt" as namespace importAaron Kennedy2010-04-273-6/+6
| | | | | | This conflicts with the global object's "Qt" property. QTBUG-10143
* Improved error messages for type resolving, new debug optionmae2010-04-261-22/+32
| | | | | | | | | | The patch improves the error messages when type resolving fails and introduces a new debug utility QML_CHECK_TYPES. If the environment variable is defined, type shadowing will be reported as error. Reviewed-by: Warwick Allison
* Give error on attempt to import types from too-early version number.Warwick Allison2010-04-223-0/+5
| | | | eg. "import Qt 4.6" not valid.
* Fix versioning of Qt Declarative's in-built typesAlan Alpert2010-04-21105-107/+107
| | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081
* AutotestsAaron Kennedy2010-04-2142-0/+163
|
* AutotestAaron Kennedy2010-04-215-0/+18
|
* Don't allow properties in Component elementsAaron Kennedy2010-04-217-0/+27
| | | | QTBUG-10082
* Improve error messages, especially on embedded.Warwick Allison2010-04-204-2/+7
| | | | | | With embedded, it is often the case that some QT_NO_* features are turned off (eg. QT_NO_XMLPATTERNS), which in turn leads to QML types not being available.
* Fix tests: remove unnecessary calls to QML_DECLARE_TYPEBea Lam2010-04-192-14/+4
|
* Emit runtime warnings through QDeclarativeEngineAaron Kennedy2010-04-191-2/+1
| | | | QTBUG-9726
* Add Component.onDestruction attached propertyAaron Kennedy2010-04-155-0/+47
| | | | | | | | | This property complements Component.onCompleted. It is emitted before the destruction actually begins (for the most part) so the objects are still alive and accessible. The QtObject.onDestroyed signal is now blocked as it never really worked properly anyway.
* 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