Remove legacy filtering of everything related to settings

This is a remainder from old openSUSE systems, which would show yast
modules otherwise. Fixes settings app not shown.

Reviewed-by:notmart
This commit is contained in:
Sebastian Kügler 2015-06-18 17:35:57 -07:00
parent 8bf2aebd2f
commit d2fe2bb82b

View file

@ -97,7 +97,7 @@ void ApplicationListModel::loadApplications()
for(KServiceGroup::List::ConstIterator it = subGroupList.begin();it != subGroupList.end(); it++) {
KSycocaEntry::Ptr groupEntry = (*it);
if (groupEntry->isType(KST_KServiceGroup) && groupEntry->name() != "System/" && groupEntry->name() != "Settingsmenu/") {
if (groupEntry->isType(KST_KServiceGroup)) {
KServiceGroup::Ptr serviceGroup(static_cast<KServiceGroup* >(groupEntry.data()));
if (!serviceGroup->noDisplay()) {