From 6c66619bc6cd63958f113acbd627c8deadb614be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Fri, 20 Mar 2020 10:10:09 +0100 Subject: [PATCH] At least fix coding style --- containments/homescreen/applicationlistmodel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/containments/homescreen/applicationlistmodel.cpp b/containments/homescreen/applicationlistmodel.cpp index ebc2b071..7d59739e 100644 --- a/containments/homescreen/applicationlistmodel.cpp +++ b/containments/homescreen/applicationlistmodel.cpp @@ -127,7 +127,7 @@ void ApplicationListModel::loadApplications() subGroupList.pop_front(); if (groupEntry->isType(KST_KServiceGroup)) { - KServiceGroup::Ptr serviceGroup(static_cast(groupEntry.data())); + KServiceGroup::Ptr serviceGroup(static_cast(groupEntry.data())); if (!serviceGroup->noDisplay()) { KServiceGroup::List entryGroupList = serviceGroup->entries(true); @@ -136,11 +136,11 @@ void ApplicationListModel::loadApplications() KSycocaEntry::Ptr entry = (*it); if (entry->isType(KST_KServiceGroup)) { - KServiceGroup::Ptr serviceGroup(static_cast(entry.data())); + KServiceGroup::Ptr serviceGroup(static_cast(entry.data())); subGroupList << serviceGroup; } else if (entry->property(QStringLiteral("Exec")).isValid()) { - KService::Ptr service(static_cast(entry.data())); + KService::Ptr service(static_cast(entry.data())); if (service->isApplication() && !blacklist.contains(service->desktopEntryName()) &&