Fix build of stable branch on build.kde.org

CI system doesn't have Qt 5.5 yet, let's not break because of
qCInfo.
This commit is contained in:
Martin Gräßlin 2016-03-03 08:00:55 +01:00
parent 72dbdaad06
commit cc64bb25ae

View file

@ -44,7 +44,9 @@ static void libinputLogHandler(libinput *libinput, libinput_log_priority priorit
qCDebug(KWIN_LIBINPUT) << "Libinput:" << buf;
break;
case LIBINPUT_LOG_PRIORITY_INFO:
#if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0))
qCInfo(KWIN_LIBINPUT) << "Libinput:" << buf;
#endif
break;
case LIBINPUT_LOG_PRIORITY_ERROR:
default: