Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove incorrect ASSERT | Aaron Kennedy | 2010-05-24 | 1 | -3/+1 |
| | | | | QTBUG-10832 | ||||
* | Be slightly more verbose on assigning undefined in binding. | Warwick Allison | 2010-05-24 | 1 | -1/+3 |
| | | | | Task-number: QTBUG-10303 | ||||
* | Add parent parameter to QDeclarativeExpression constructor. | Michael Brasser | 2010-05-18 | 1 | -2/+2 |
| | | | | Also rearrange the parameter order to be more clear. | ||||
* | Restructure QDeclarativeAbstractBinding destructor | Aaron Kennedy | 2010-05-17 | 1 | -2/+4 |
| | |||||
* | Don't call pure virtual method in ~QDeclarativeAbstractBinding() | Aaron Kennedy | 2010-05-17 | 1 | -1/+1 |
| | |||||
* | Warn on assigning a function to a QML property. | Michael Brasser | 2010-04-29 | 1 | -1/+12 |
| | | | | | | | | | This is not supported, and should not silently be converting the function to a string. See QTBUG-10302 for why we check !isRegExp as well as isFunction. Task-number: QTBUG-10237 Reviewed-by: Aaron Kennedy | ||||
* | Fix crash. | Warwick Allison | 2010-04-21 | 1 | -1/+3 |
| | | | | Reviewed-by: Aaron Kennedy | ||||
* | Allow null to be assigned to object properties | Aaron Kennedy | 2010-04-20 | 1 | -0/+4 |
| | |||||
* | Emit runtime warnings through QDeclarativeEngine | Aaron Kennedy | 2010-04-19 | 1 | -2/+1 |
| | | | | QTBUG-9726 | ||||
* | Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeData | Aaron Kennedy | 2010-04-15 | 1 | -3/+3 |
| | |||||
* | Reduce warnings at shutdown | Aaron Kennedy | 2010-04-14 | 1 | -1/+1 |
| | | | | QTBUG-9799 | ||||
* | Allow undefined to be assigned to QVariant properties | Aaron Kennedy | 2010-04-09 | 1 | -0/+4 |
| | | | | QTBUG-9704 | ||||
* | Use variant instead of var in QML | Aaron Kennedy | 2010-04-09 | 1 | -13/+0 |
| | | | | | | In QML "var"s are not the same as JavaScript vars - they are QVariants instead. However, as they behave in a similar enough fashion to native JavaScript it can be confusing to developers when they are called "var". | ||||
* | Don't crash when QML engine is deleted | Aaron Kennedy | 2010-04-08 | 1 | -3/+2 |
| | |||||
* | Fix crash on null object assignment | Aaron Kennedy | 2010-04-08 | 1 | -1/+2 |
| | |||||
* | Cleanup handling of errors in bindings and scripts | Aaron Kennedy | 2010-04-08 | 1 | -7/+37 |
| | | | | | | | | | | | | | 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 QtDeclarative | Thiago Macieira | 2010-04-02 | 1 | -5/+5 |
| | | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason. | ||||
* | Remove dead performance measurement code from QML | Aaron Kennedy | 2010-03-22 | 1 | -5/+0 |
| | |||||
* | Optimization: Reduce unnecessary QObject allocations | Aaron Kennedy | 2010-03-17 | 1 | -4/+15 |
| | |||||
* | Improve value type binding behavior | Aaron Kennedy | 2010-03-11 | 1 | -9/+133 |
| | | | | | | | | | | | | | | Changing value type bindings in state changes, and implicitly removing them on property assignment was not reliable. Internally the system considered a binding on "font" and one on "font.x" as a binding on two separate properties, even though the "font" binding completely overrides the "font.x" property. Following this change a binding to "font.x" creates a proxy binding object on the "font" property in addition to the "font.x" binding itself. This allows behavior to be consistent across all operations. QT-2920 | ||||
* | Polish QDeclarativeProperty API | Aaron Kennedy | 2010-02-26 | 1 | -2/+2 |
| | |||||
* | Rename QDeclarativeMetaProperty -> QDeclarativeProperty | Aaron Kennedy | 2010-02-25 | 1 | -6/+6 |
| | | | | There's nothing meta about our properties. | ||||
* | Make more private QDeclarativeMetaProperty methods private | Aaron Kennedy | 2010-02-25 | 1 | -4/+4 |
| | |||||
* | Tweak QDeclarativeMetaProperty type category API | Aaron Kennedy | 2010-02-25 | 1 | -1/+1 |
| | |||||
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 1 | -0/+308 |
QDeclarativeXXX. |