From 47cb98ad81d1990a45b45a9c53d0dd28334037db Mon Sep 17 00:00:00 2001 From: Andras Mantia Date: Mon, 19 May 2008 20:54:36 +0000 Subject: [PATCH] Fix connection: now imap connections are not stuck and hopefully they will not cause crashes on mail checking/mail check cancelling. svn path=/trunk/KDE/kdepim/; revision=809996 --- imapaccountbase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imapaccountbase.cpp b/imapaccountbase.cpp index 4a6a25436..816bc89a6 100644 --- a/imapaccountbase.cpp +++ b/imapaccountbase.cpp @@ -1299,8 +1299,8 @@ void ImapAccountBase::setImapSeenStatus(KMFolder * folder, const QString & path, ImapAccountBase::jobData jd( url.url(), folder ); jd.path = path; insertJob(job, jd); - connect(job, SIGNAL(result(KIO::Job *)), - SLOT(slotSetStatusResult(KIO::Job *))); + connect(job, SIGNAL(result(KJob *)), + SLOT(slotSetStatusResult(KJob *))); } //-----------------------------------------------------------------------------