Fix variable scope

This commit is contained in:
Aleix Pol 2016-02-16 18:54:34 +01:00
parent a1ab2d2dbd
commit 9856de8e90

View file

@ -113,7 +113,6 @@ void ApplicationListModel::loadApplications()
for(KServiceGroup::List::ConstIterator it = entryGroupList.constBegin(); it != entryGroupList.constEnd(); it++) {
KSycocaEntry::Ptr entry = (*it);
ApplicationData data;
if (entry->isType(KST_KServiceGroup)) {
KServiceGroup::Ptr serviceGroup(static_cast<KServiceGroup* >(entry.data()));
@ -131,6 +130,7 @@ void ApplicationListModel::loadApplications()
bl << service->desktopEntryName();
ApplicationData data;
data.name = service->name();
data.icon = service->icon();
data.storageId = service->storageId();