summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativevmemetaobject.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Only emit change signal when variant properties actually changeAaron Kennedy2010-09-011-3/+11
| | | | QTBUG-12601
* Allow the debugger to modify method bodiesAaron Kennedy2010-07-081-0/+30
| | | | QTBUG-11933
* Don't crash when assigning a Behavior to a grouped property.Michael Brasser2010-05-241-1/+1
| | | | | Task-number: QTBUG-10799 Reviewed-by: Aaron Kennedy
* Cleanup guards used in synthesized QML meta objectsAaron Kennedy2010-04-291-2/+1
| | | | QTCREATORBUG-1289
* Don't crash on deleted objects assigned to variant propertiesAaron Kennedy2010-04-191-6/+21
| | | | QTBUG-8077
* Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeDataAaron Kennedy2010-04-151-1/+1
|
* Cleanup handling of errors in bindings and scriptsAaron Kennedy2010-04-081-1/+2
| | | | | | | | | | | | | QML used to silently ignore a log of errors - such as a failed assignment to a QObject property. These errors are now all reported as exceptions in JavaScript. Other questionable activities, like assigning a JavaScript array to a "property var" property which appeared to work, thanks to QtScript's transparent conversion of arrays to a QVariantList, are now blocked entirely. QTBUG-9152 QTBUG-9382 QTBUG-9341 QTBUG-6886
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-4/+4
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Optimization: reduce allocationsAaron Kennedy2010-03-291-3/+3
|
* Use QDateTime when specifying a "date" property in QMLAaron Kennedy2010-03-291-0/+24
| | | | QT-718
* Fix for qdeclarativelanguage::listPropertiesAaron Kennedy2010-03-291-2/+5
|
* Optimization: Don't use QVariant in QDeclarativeVMEMetaObjectAaron Kennedy2010-03-291-28/+402
|
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-12/+13
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-1/+1
| | | | There's nothing meta about our properties.
* Make more private QDeclarativeMetaProperty methods privateAaron Kennedy2010-02-251-1/+1
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+366
QDeclarativeXXX.