From b0e9eb0be9f14d2beaf0fcf2e0058c007d8c0f47 Mon Sep 17 00:00:00 2001 From: Fatih Uzunoglu Date: Fri, 12 Feb 2021 00:23:37 +0300 Subject: [PATCH] qt: update minimum required Qt version in qt.hpp Signed-off-by: Pierre Lamot --- modules/gui/qt/qt.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gui/qt/qt.hpp b/modules/gui/qt/qt.hpp index 6306a0cd79..aadb8ac50a 100644 --- a/modules/gui/qt/qt.hpp +++ b/modules/gui/qt/qt.hpp @@ -43,8 +43,8 @@ #include #include -#if ( QT_VERSION < 0x050900 ) -# error Update your Qt version to at least 5.9.0 +#if ( QT_VERSION < QT_VERSION_CHECK(5, 11, 0) ) +# error Update your Qt version to at least 5.11.0 #endif #define HAS_QT510 ( QT_VERSION >= 0x051000 ) -- 2.11.4.GIT