summaryrefslogtreecommitdiffstats
path: root/tests/auto/qobject
Commit message (Collapse)AuthorAgeFilesLines
* Compile fix.Alessandro Portale2009-08-131-1/+1
| | | | tst_qobject deleteQObjectWhenDeletingEvent needs QtGui.
* Possible Dead lock in the destructor of QObjectThierry Bastian2009-08-121-0/+18
| | | | | | | | | | | The problem was that we were locking a mutex that was global to thread to remove posted events associated with a QObject from the posted event list. We were also immediately deleting those events. If that triggers the deletion of another QObject, you would then trigger a dead-lock. Task-number: 259514 Reviewed-by: brad Reviewed-by: ogoffart
* Update contact URL in license headers.Jason McDonald2009-08-123-3/+3
| | | | Reviewed-by: Trust Me
* Allow retrieval of interface IId from class type.Aaron Kennedy2009-07-311-0/+11
| | | | | | | This method is necessary for QML to support Qt interfaces, but probably shouldn't be used otherwise. Reviewed-by: Roberto Raggi
* fix tests for QT_NO_PROCESS and when running tests as rootHarald Fernengel2009-07-211-0/+4
|
* Merge license header changes from 4.5Volker Hilsheimer2009-06-163-6/+6
|\
| * Update license headers as requested by the marketing department.Jason McDonald2009-06-163-6/+6
| | | | | | | | Reviewed-by: Trust Me
* | handle qreal properties correctly in the meta-object systemKent Hansen2009-06-051-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When cross-compiling, it's possible that the size of qreal for moc itself (host platform) is different from the size of qreal on the target platform. Thus, we should not encode the metatype-id of qreal at moc time. Instead, use QMetaType::QReal in the generated code so that the the property flags are only derived at compile time. We also need to support the pesky QT_COORD_TYPE. In this case, qreal can be _any_ type (not just float or double), so we encode the property type as 0 and have a special check in QMetaProperty::type() that resolves the correct type at runtime. Reviewed-by: Simon Hausmann
* | Add a flag that ensure that a connection is made only oneOlivier Goffart2009-05-271-4/+77
|/ | | | | | | | | | It is often desirable, when doing connection, to ensure that the same connection is only made once. This can be done with the Qt::UniqueConnection 'flag' Also documented the order the slot are called Reviewed-by: Brad
* Remove obsolete code from autotests.Jason McDonald2009-04-161-6/+0
| | | | | | | | Each version of Qt has its own set of autotests, therefore preprocessor directives relating to obsolete QT_VERSION's are not necessary. Reviewed-by: Carlos Duclos
* Long live Qt 4.5!Lars Knoll2009-03-237-0/+3085