qt5base-lts/examples/threads
Marc Mutz 6d65b2cc8c Use QStringList::join(QChar) overload where applicable [examples]
This is an automated change performing the following replacements:
                    join\("(.)"\) -> join('\1')
  join\(QLatin1String\("(.)"\)\)  -> join(QLatin1Char('\1'))
  join\(QStringLiteral\("(.)"\)\) -> join(QLatin1Char('\1'))

Change-Id: I1d0c9782cc1522d937b930531720e32d4c8f7ce8
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2012-09-23 23:30:03 +02:00
..
mandelbrot Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
queuedcustomtype Use QStringList::join(QChar) overload where applicable [examples] 2012-09-23 23:30:03 +02:00
semaphores Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
waitconditions Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
README Remove references to demos from docs. 2011-07-05 19:57:54 +02:00
threads.pro Fix compilation of examples with -no-widgets 2012-06-07 07:27:53 +02:00

Qt 4 makes it easier than ever to write multithreaded applications. More
classes have been made usable from non-GUI threads, and the signals and slots
mechanism can now be used to communicate between threads.

Additionally, it is now possible to move objects between threads.


Documentation for these examples can be found via the Examples
link in the main Qt documentation.