fix: fix qt5 builds on macos 15 (#5923)

Although this config is not built on CI, while trying to compile locally, the build failed due to warnings and -Werror.
Some qt functions were actually deprecated (but not removed) before version 6.0.0 and clang (righfully) complains about comparison between different types of enums.
This commit is contained in:
Bruno Alexandre Rosa 2025-05-07 01:18:59 +00:00 committed by GitHub
parent 286a7494d3
commit 4c3cfc8c2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View file

@ -37,17 +37,17 @@ bool CardInfoComparator::compareVariants(const QVariant &a, const QVariant &b) c
// Perform type-specific comparison
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
switch (a.typeId()) {
switch (static_cast<int>(a.typeId())) {
#else
switch (a.type()) {
switch (static_cast<int>(a.type())) {
#endif
case QMetaType::Int:
case static_cast<int>(QMetaType::Int):
return a.toInt() < b.toInt();
case QMetaType::Double:
case static_cast<int>(QMetaType::Double):
return a.toDouble() < b.toDouble();
case QMetaType::QString:
case static_cast<int>(QMetaType::QString):
return a.toString() < b.toString();
case QMetaType::Bool:
case static_cast<int>(QMetaType::Bool):
return a.toBool() < b.toBool();
default:
// Default to comparing as strings