From db76d4279a7016194d0b8e0396c5f5e052abc638 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 3 Mar 2016 16:14:17 +0100 Subject: [PATCH] Fix build of stable branch on build.kde.org (Try 2) Like cc64bb25aed5a5bf88b3e0f15c3850c4b6e2c481 just for xkb. --- keyboard_input.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/keyboard_input.cpp b/keyboard_input.cpp index 57aa7b0dc0..436e56c1fa 100644 --- a/keyboard_input.cpp +++ b/keyboard_input.cpp @@ -61,7 +61,9 @@ static void xkbLogHandler(xkb_context *context, xkb_log_level priority, const ch qCDebug(KWIN_XKB) << "XKB:" << buf; break; case XKB_LOG_LEVEL_INFO: +#if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)) qCInfo(KWIN_XKB) << "XKB:" << buf; +#endif break; case XKB_LOG_LEVEL_WARNING: qCWarning(KWIN_XKB) << "XKB:" << buf;