summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativecomponent.h
Commit message (Collapse)AuthorAgeFilesLines
* Rename Component::errorsString() -> errorString() (and also forBea Lam2010-05-201-1/+1
| | | | QDeclarativeComponent)
* Make component.createObject require a parent argumentAlan Alpert2010-05-051-1/+1
| | | | | | | | | For graphical objects (the common case) a common mistake is to not parent a dynamically created item. Since you almost always want to add a parent, and it's hard for a beginner to diagnose this problem, a parent is now a required argument and dealt with by the createObject function. Task-number: QTBUG-10110
* Remove Component's isReady, isLoading, isError and isNull properties.Bea Lam2010-04-291-4/+1
| | | | | | | The Component status enum covers all of these properties already and removing these also makes the API consistent with Image and Loader. Note this change only affects the QML Component API; the methods are still available for QDeclarativeComponent.
* Add missing Q_DISABLE_COPYs.Michael Brasser2010-04-221-0/+1
|
* Emit runtime warnings through QDeclarativeEngineAaron Kennedy2010-04-191-2/+1
| | | | QTBUG-9726
* Fix QtDeclarative public headers to include <QtDeclarative/foo.h>Thiago Macieira2010-04-021-2/+2
| | | | All Qt public headers must do it like that.
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-1/+0
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+134
QDeclarativeXXX.