From 5cf30110ec3ef5376b164010a788f8fdd9018ccf Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Mon, 6 Mar 2023 12:45:17 +0100 Subject: [PATCH] version guard fixed --- src/controls/QskEvent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controls/QskEvent.cpp b/src/controls/QskEvent.cpp index 3d9b1995..a3152e92 100644 --- a/src/controls/QskEvent.cpp +++ b/src/controls/QskEvent.cpp @@ -8,7 +8,7 @@ #include -#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 ) +#if QT_VERSION >= QT_VERSION_CHECK( 6, 4, 0 ) QSK_QT_PRIVATE_BEGIN #include @@ -136,7 +136,7 @@ bool qskIsStandardKeyInput( const QKeyEvent* event, QKeySequence::StandardKey ke bool qskIsButtonPressKey( const QKeyEvent* event ) { -#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 ) +#if QT_VERSION >= QT_VERSION_CHECK( 6, 4, 0 ) const auto hint = QGuiApplicationPrivate::platformTheme()->themeHint( QPlatformTheme::ButtonPressKeys );