[pim/kdepim-runtime] agents/newmailnotifier: Use correct class name
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 126588cc61e51cc36155b880e0e182c5bed035b2 by Laurent Montel.
Committed on 16/08/2026 at 10:40.
Pushed by mlaurent into branch 'master'.
Use correct class name
M +1 -1 agents/newmailnotifier/specialnotifierjob.cpp
https://invent.kde.org/pim/kdepim-runtime/-/commit/126588cc61e51cc36155b880e0e182c5bed035b2
diff --git a/agents/newmailnotifier/specialnotifierjob.cpp b/agents/newmailnotifier/specialnotifierjob.cpp
index 62df2543a..587180a28 100644
--- a/agents/newmailnotifier/specialnotifierjob.cpp
+++ b/agents/newmailnotifier/specialnotifierjob.cpp
@@ -61,7 +61,7 @@ void SpecialNotifierJob::slotItemFetchJobDone(KJob *job)
auto searchJob = new Akonadi::ContactSearchJob(this);
searchJob->setLimit(1);
searchJob->setQuery(Akonadi::ContactSearchJob::Email, KEmailAddress::firstEmailAddress(mFrom).toLower(), Akonadi::ContactSearchJob::ExactMatch);
- connect(searchJob, &Akonadi::ItemFetchJob::result, this, &SpecialNotifierJob::slotSearchJobFinished);
+ connect(searchJob, &Akonadi::ContactSearchJob::result, this, &SpecialNotifierJob::slotSearchJobFinished);
} else {
emitNotification();
}