core/desktopentry: use this-> in heuristicLookup

This commit is contained in:
outfoxxed 2025-07-26 22:50:17 -07:00
parent 0416032a7c
commit 1c026545e9
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E

View file

@ -387,7 +387,7 @@ DesktopEntry* DesktopEntryManager::byId(const QString& id) {
}
DesktopEntry* DesktopEntryManager::heuristicLookup(const QString& name) {
if (auto* entry = DesktopEntryManager::byId(name)) return entry;
if (auto* entry = this->byId(name)) return entry;
auto list = this->desktopEntries.values();