We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759bd72 commit fcffbbcCopy full SHA for fcffbbc
src/core/desktopentry.cpp
@@ -389,7 +389,7 @@ DesktopEntry* DesktopEntryManager::byId(const QString& id) {
389
DesktopEntry* DesktopEntryManager::heuristicLookup(const QString& name) {
390
if (auto* entry = DesktopEntryManager::byId(name)) return entry;
391
392
- auto& list = this->mApplications.valueList();
+ auto list = this->desktopEntries.values();
393
394
auto iter = std::ranges::find_if(list, [&](const DesktopEntry* entry) {
395
return name == entry->mStartupClass;
0 commit comments