Skip to content

Commit 4729062

Browse files
Fix build micromamba after Qt 5.15.15 update (#1272)
1 parent 30aa171 commit 4729062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/qml_engine/src/cpp/QtConstants.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ initializeQtConstantsMap()
657657
mapConstants[L"Qt.Key_Dead_Small_Schwa"] = Qt::Key_Dead_Small_Schwa;
658658
mapConstants[L"Qt.Key_Dead_Capital_Schwa"] = Qt::Key_Dead_Capital_Schwa;
659659
mapConstants[L"Qt.Key_Dead_Greek"] = Qt::Key_Dead_Greek;
660-
#if QT_VERSION != QT_VERSION_CHECK(5, 15, 8)
660+
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
661661
mapConstants[L"Qt.Key_Dead_Lowline"] = Qt::Key_Dead_Lowline;
662662
mapConstants[L"Qt.Key_Dead_Aboveverticalline"] = Qt::Key_Dead_Aboveverticalline;
663663
mapConstants[L"Qt.Key_Dead_Belowverticalline"] = Qt::Key_Dead_Belowverticalline;

0 commit comments

Comments
 (0)