From 1c026545e9f45ad7b252e31643d2725beca653af Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sat, 26 Jul 2025 22:50:17 -0700 Subject: [PATCH] core/desktopentry: use this-> in heuristicLookup --- src/core/desktopentry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/desktopentry.cpp b/src/core/desktopentry.cpp index bb0d2c55..95fcb89e 100644 --- a/src/core/desktopentry.cpp +++ b/src/core/desktopentry.cpp @@ -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();