summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcompiler.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2010-01-111-4/+7
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Don't double function'ize dynamic QML functionsAaron Kennedy2010-01-111-4/+7
| |
* | unwarnWarwick Allison2010-01-111-1/+1
|/
* Deferred properties are not experimental anymoreAaron Kennedy2010-01-111-3/+0
|
* Optimization: Bypass qt_metacall for synthesized methodsAaron Kennedy2010-01-091-2/+17
|
* Optimization: Cache compiled dynamic functionsAaron Kennedy2010-01-081-2/+13
|
* Remove unused optimizationAaron Kennedy2009-12-221-19/+2
|
* Remove QML_ENABLE_DEFERRED env variableAaron Kennedy2009-12-181-2/+1
| | | | Use QML_EXPERIMENTAL instead
* Deferred properties are off by defaultAaron Kennedy2009-12-181-0/+4
|
* Fix deferred property bugsAaron Kennedy2009-12-181-0/+8
| | | | | Previously deferred properties would fail if any of the sub objects used bindings or QmlParserStatus. Whoops.
* Support aliasing of composite types.Michael Brasser2009-12-171-0/+15
| | | | | Composite types haven't been registered with the metatype system, so we use the base type as the property type instead.
* Fix regression introduced in 6fe6e803f08750534a6c14b4a2847a6ec1b29350.Michael Brasser2009-12-171-1/+2
| | | | Only use the component name if it is actually a type.
* Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Aaron Kennedy2009-12-161-0/+8
|\ | | | | | | into kinetic-declarativeui
| * Use the component name as the base class name for dynamic meta objectsMichael Brasser2009-12-161-0/+8
| | | | | | | | | | | | when appropriate. This allows for much improved debug presentation. e.g. what used to be shown as "QmlGraphicsRectangle_QML_3" can now be show as "MyComponent".
* | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Aaron Kennedy2009-12-161-2/+54
|\ \ | |/ | | | | into kinetic-declarativeui
| * Optimize <Type>.<EnumValue> type enum assignments.Michael Brasser2009-12-161-0/+52
| | | | | | | | Treat it as a literal assignment rather than a binding.
| * Improve property alias exceptions.Michael Brasser2009-12-151-2/+2
| | | | | | | | | | Make sure the proper location is given, and provide more specific error messages.
* | Binding optimizer extensionsAaron Kennedy2009-12-161-7/+22
|/
* Remove left over debugging outputAaron Kennedy2009-12-141-1/+0
|
* Binding optimizer extensionsAaron Kennedy2009-12-141-1/+3
|
* Introduce experimental binding optimizerAaron Kennedy2009-12-141-4/+37
| | | | Enable with QML_EXPERIMENTAL=1
* Generate error when attempting to write to a read-only object property.Michael Brasser2009-12-101-0/+3
|
* small cleanupThierry Bastian2009-12-041-98/+89
| | | | | | make use of QVariant::userType over Qvariant::type make use of char for 1-string character QCoreApplication::translate is static
* fix includesOswald Buddenhagen2009-12-031-27/+30
| | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes.
* Avoid QString <-> QUrl conversionsAaron Kennedy2009-12-031-1/+1
|
* OptimizationAaron Kennedy2009-12-031-11/+17
|
* Undo most of 913dd563064e8047fe738fc9c79135adfb928977Warwick Allison2009-12-021-19/+19
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-12-021-2/+16
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlmetatype.cpp
| * Cleanup cached binding closuresAaron Kennedy2009-12-021-4/+9
| |
| * Cache binding closuresAaron Kennedy2009-12-021-0/+9
| |
* | Remove include styles that rely on configure.Warwick Allison2009-12-011-14/+14
|/ | | | May help modularization (syncqt and configure are Qt-specific).
* Support array-literal Script::source valuesAaron Kennedy2009-11-291-19/+35
|
* TestsAaron Kennedy2009-11-161-2/+2
|
* Do not use "QtDeclarative/XXX" style includes in declarative module code,Warwick Allison2009-11-121-1/+1
| | | | as it breaks reinstalling the module against existing Qt.
* Fixup qmllanguage::aliasProperties testAaron Kennedy2009-11-111-0/+5
|
* More language testsAaron Kennedy2009-11-061-5/+8
|
* Improve qmllanguage test caseAaron Kennedy2009-11-041-14/+19
|
* Fix incorrect assertAaron Kennedy2009-11-031-1/+1
| | | | QT-2432
* CleanupAaron Kennedy2009-10-301-0/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-301-16/+16
|\ | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/debugger/qmldebug.cpp src/declarative/fx/qmlgraphicsimagebase_p.h src/declarative/util/qmlanimation.h src/declarative/util/qmlstate.h src/declarative/util/qmltimer.cpp
| * Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-301-0/+31
| |\ | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlcomponentjs.cpp src/declarative/qml/qmlcomponentjs_p.h src/declarative/qml/qmlcomponentjs_p_p.h
| * | fix headersWarwick Allison2009-10-291-16/+16
| | |
* | | Make private headers _pAaron Kennedy2009-10-301-1/+1
| | |
* | | Rename QFx classes to QmlGraphicsAaron Kennedy2009-10-301-1/+1
| |/ |/|
* | Simple compiler statisticsAaron Kennedy2009-10-291-0/+31
|/
* Doc.Michael Brasser2009-10-281-0/+4
|
* Support return values in synthesized methodsAaron Kennedy2009-10-271-0/+1
|
* Error when a QVariant property is used as a grouped propertyAaron Kennedy2009-10-271-1/+1
| | | | This crashed as the metatype of QVariant is -1.
* Fix Behavior support for value type properties.Michael Brasser2009-10-231-1/+1
|
* Support assigning scripts to QML propertiesAaron Kennedy2009-10-221-0/+32
|