3fe0bf6e1b
The example follows bad and outdated practices: - running time consuming and I/O heavy workload in the GUI thread - calling processEvents to keep the UI responsive - showing results only at the end of a search rather than continuously Perhaps this example can be rewritten at some point to apply modern practices (at least use a thread and emit signals), but it seems to have low overall educational value. Moving it to be a manual test for now. Fixes: QTBUG-111002 Pick-to: 6.5 Change-Id: Id630fd4599096448ea4f96bcbf977b11a039796f Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
15 lines
364 B
Prolog
15 lines
364 B
Prolog
QT_FOR_CONFIG += widgets
|
|
|
|
TEMPLATE = subdirs
|
|
SUBDIRS = classwizard \
|
|
extension \
|
|
licensewizard \
|
|
standarddialogs \
|
|
tabdialog \
|
|
trivialwizard
|
|
|
|
!qtHaveModule(printsupport): SUBDIRS -= licensewizard
|
|
!qtConfig(wizard) {
|
|
SUBDIRS -= trivialwizard licensewizard classwizard
|
|
}
|