summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativepropertycache.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Implement property versioning inside the declarative engineAaron Kennedy2011-01-271-0/+21
| | | | Task-number: QTBUG-13451
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-191-1/+1
|\
| * Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | | | | | Reviewed-by: Trust Me
* | Support property/method versions in QMLMartin Jones2011-01-051-1/+2
|/ | | | | | | | Use metaobject revisioning to exclude properties/revisions added in later versions from interfering with earlier versions. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* Fix warnings related to unused variables.Thiago Macieira2010-11-261-1/+0
| | | | | | | Just add some Q_UNUSED for parameters or remove the variable we don't need for the others. Reviewed-by: Trust Me
* Properties should have precedence over methods.Michael Brasser2010-10-181-29/+29
| | | | | | | Fixes regression introduced by recent changes to the property cache. Task-Number: QTBUG-14500 Reviewed-by: Aaron Kennedy
* Allow overloaded methods, and methods with default params, to be called in QMLAaron Kennedy2010-10-151-8/+23
| | | | Task-number: QTBUG-11604
* Fix potential memory corruption in QDeclarativePropertyCacheAaron Kennedy2010-10-141-4/+7
| | | | Task-number: QTBUG-14449
* Correctly splice properties from derived metaobjects togetherAaron Kennedy2010-10-141-56/+21
| | | | Task-number: QTBUG-14449
* Connect property alias change signals on useAaron Kennedy2010-10-071-1/+18
| | | | Task-number: QTBUG-14089
* Prevent calling deleteLater() from QMLAaron Kennedy2010-08-311-2/+2
| | | | QTBUG-13045
* Ignore non-scriptable properties in QMLAaron Kennedy2010-08-311-8/+30
| | | | QTBUG-13043
* Merge remote branch 'mainline/4.7' into 4.7Morten Johan Sørvig2010-05-121-12/+17
|\ | | | | | | | | | | Conflicts: src/declarative/qml/qdeclarativeengine.cpp tools/qdoc3/htmlgenerator.cpp
| * Don't unnecessarily regenerate property cacheAaron Kennedy2010-04-281-12/+17
| | | | | | | | Improves compilation:boomblock benchmark by 22%
* | QtDeclarative: remove spurious semi-colons from the source codeThiago Macieira2010-05-041-1/+1
|/
* Add Component.onDestruction attached propertyAaron Kennedy2010-04-151-3/+3
| | | | | | | | | 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 the ridiculous QDeclarativeDeclarativeData -> QDeclarativeDataAaron Kennedy2010-04-151-2/+2
|
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-3/+3
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Optimization.Michael Brasser2010-03-021-2/+2
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+423
QDeclarativeXXX.