By adding it to the default build flags via .cmake.conf.
This disables the 3-arg QObject::connect() overload:
QObject::connect(sender, signal, functor)
For details see:
https://lists.qt-project.org/pipermail/development/2023-July/044141.html
No changes required.
Task-number: QTBUG-116296
Change-Id: I3225d98df5b067d73619b1e46fffed23dae5e7bd
Reviewed-by: Sona Kurazyan <kurazyan.sona@gmail.com>
Restores the QT_NO_FOREACH define lost by the removal of .qmake.conf
in 21136bf84c.
The instances in the big5 utility are all over local variables, and
they clearly don't modify the container being iterateed over. Add
std::as_const() to avoid hidden detach()es. Replace two loops with
QByteArrayList::join().
Change-Id: If01bc667f019da0dbce99d84db5832067c5d936d
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Provide conanfile.py recipe to support building this module
with Conan. The conanfile.py recipe inherits the main
functionality from base class located in qt-conan-common.git.
'qt-configure-module(.bat)' and cmake is used for the builds.
Dependencies (Conan requirements) are defined by the base
class implementation which reads those from the
'dependencies.yaml' which is also used by the Coin/CI.
Pick-to: 6.2
Task-number: QTBUG-94873
Change-Id: I9eba05115d83090ee43ed753c86005692b207520
Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
Reviewed-by: Toni Saario <toni.saario@qt.io>