summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeexpression.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Support QList<QObject*> propertiesAaron Kennedy2010-04-081-43/+23
| | | | | | | We already supported returning QList<QObject*> from methods, but there wasn't really much that could be done with the return value. This closes the loop on QList<QObject*> support by allowing them to be properties, and used as models.
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-6/+6
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Remove dead performance measurement code from QMLAaron Kennedy2010-03-221-8/+0
|
* Fix crashAaron Kennedy2010-03-171-0/+1
| | | | | | If the notifier gets swapped out during emitting, the endpoint is also invalidated. Thus the "disconnected" writeback must track the endpoint not just the Notifier.
* CrashAaron Kennedy2010-03-171-1/+7
|
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-29/+39
|
* Optimization: Use id notifier for QtScript bindingsAaron Kennedy2010-03-171-1/+23
|
* Merge remote branch 'qt/4.7' into qml-4.7Qt Continuous Integration System2010-03-101-13/+14
|\ | | | | | | | | Conflicts: src/declarative/util/qdeclarativestateoperations.cpp
| * doc: Fixed several qdoc errors.Martin Smith2010-03-091-13/+14
| |
* | Unify binding optimizer and QtScript binding signal management logicAaron Kennedy2010-03-101-108/+45
|/
* Save secondary scope inside the expression's scope objectAaron Kennedy2010-03-031-16/+25
| | | | | | | This prevents the secondary scope from contaminating scopes outside itself when used as a signal expression. QTBUG-8641
* Move JS global scope to top of the QML scope chainAaron Kennedy2010-03-031-0/+5
| | | | QT-2787
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+810
QDeclarativeXXX.