From fef8a60c27f9181f0f4fcdbb1c85c016f60e4df1 Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Sat, 10 Oct 2020 08:45:04 +0200 Subject: [PATCH] More suitable variable name --- src/contactrunner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contactrunner.cpp b/src/contactrunner.cpp index e585c8b..e547e3a 100644 --- a/src/contactrunner.cpp +++ b/src/contactrunner.cpp @@ -324,8 +324,8 @@ void ContactRunner::matchContacts(Plasma::RunnerContext &context) continue; } - const auto contects = account->connection()->contactManager()->allKnownContacts(); - for (const Tp::ContactPtr &contact : contects) { + const auto allKnownContacts = account->connection()->contactManager()->allKnownContacts(); + for (const Tp::ContactPtr &contact : allKnownContacts) { Plasma::QueryMatch match(this); qreal relevance = 0.1; -- GitLab