summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativevme.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate inline Script {} blocksAaron Kennedy2010-03-221-2/+11
| | | | | | | | 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 QMLAaron Kennedy2010-03-221-2/+1
|
* Fix test failuresAaron Kennedy2010-03-171-1/+3
|
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-18/+62
|
* Cosmetic tweaksAaron Kennedy2010-03-111-8/+5
|
* Replace QDeclarativeContext::addDefaultObject() -> setContextObject()Aaron Kennedy2010-03-111-1/+1
| | | | It is faster and easier to use to just support a single context object.
* Integrate QML's object ownership with the JS collectorAaron Kennedy2010-03-091-0/+2
| | | | | | | QML now behaves in a way similar to QtScript when it comes to QObject ownership. QT-2803
* Run signal expressions on attached property objects in correct scopeAaron Kennedy2010-03-041-4/+4
| | | | QTBUG-8677
* Rename QDeclarativeGraphics_setParent_noEvent QDeclarative_setParent_noEventMartin Jones2010-03-011-1/+1
|
* Polish QDeclarativeProperty APIAaron Kennedy2010-02-261-3/+3
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-11/+11
| | | | There's nothing meta about our properties.
* Make more private QDeclarativeMetaProperty methods privateAaron Kennedy2010-02-251-3/+4
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+851
QDeclarativeXXX.