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:
parent
72dbdaad06
commit
cc64bb25ae
1 changed files with 2 additions and 0 deletions
|
@ -44,7 +44,9 @@ static void libinputLogHandler(libinput *libinput, libinput_log_priority priorit
|
||||||
qCDebug(KWIN_LIBINPUT) << "Libinput:" << buf;
|
qCDebug(KWIN_LIBINPUT) << "Libinput:" << buf;
|
||||||
break;
|
break;
|
||||||
case LIBINPUT_LOG_PRIORITY_INFO:
|
case LIBINPUT_LOG_PRIORITY_INFO:
|
||||||
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0))
|
||||||
qCInfo(KWIN_LIBINPUT) << "Libinput:" << buf;
|
qCInfo(KWIN_LIBINPUT) << "Libinput:" << buf;
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
case LIBINPUT_LOG_PRIORITY_ERROR:
|
case LIBINPUT_LOG_PRIORITY_ERROR:
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue