| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Always use private/. The WinSCW compiler doesn't search the current
directory, for whatever reason.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Change to Thiago's method:
QThread::quit() is *not* thread-safe, so we mustn't call it from
outside the QThread that the QThread holds. Unlike other QObjects,
this method and some others must not be called from the thread they
have affinity to.
So add a hack to call it in the auxiliary thread. Do that by
connecting a dummy QObject's destroyed() signal to the quit() slot in
a DirectConnection, then move the object to the thread. When we call
deleteLater(), this will cause the thread's event loop to delete the
object, which in turn calls quit() in the actual thread.
Reviewed-by: Thiago Macieira
|
|
|
|
| |
Task-number: QTBUG-8984
|
|
|
|
|
| |
Prevents deadlock on shutdown for very shortlived runs,
e.g. autotests
|
|
|
|
| |
(fixes test too)
|
|
|
|
| |
Task-number: QTBUG-9032
|
|
|
|
|
|
|
| |
Add Translate transform.
Image::sourceWidth and Image::sourceHeight read/write properties.
Task-number: QTBUG-8984
|
| |
|
|
|
|
| |
Task-number: QTBUG-7515
|
|
|
|
|
| |
Allows loading/decoding local images in an asynchronous thread (already
the case for network images).
|
|
QDeclarativeXXX.
|