From b69efbe60138b48ae16a56be58bc810a2a5d328a Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Fri, 15 Dec 2023 21:41:40 +0100 Subject: [PATCH] Qt5 code as apps is qt6 only. --- .../homescreens/halcyon/plugin/applicationlistmodel.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/containments/homescreens/halcyon/plugin/applicationlistmodel.cpp b/containments/homescreens/halcyon/plugin/applicationlistmodel.cpp index bca016e5..30b3bd3c 100644 --- a/containments/homescreens/halcyon/plugin/applicationlistmodel.cpp +++ b/containments/homescreens/halcyon/plugin/applicationlistmodel.cpp @@ -21,11 +21,7 @@ ApplicationListModel::ApplicationListModel(QObject *parent) : QAbstractListModel(parent) { -#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) - connect(KSycoca::self(), qOverload(&KSycoca::databaseChanged), this, &ApplicationListModel::sycocaDbChanged); -#else connect(KSycoca::self(), &KSycoca::databaseChanged, this, &ApplicationListModel::sycocaDbChanged); -#endif } ApplicationListModel::~ApplicationListModel() = default;