From 479a4400eafcf4e2b912f4378a5a7a3bc64a67e0 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Fri, 18 Nov 2005 10:24:12 +0000 Subject: [PATCH] Fix one error. There is a lot of pb with convert QString<->QByteArray I will try to fix them svn path=/trunk/KDE/kdepim/; revision=481244 --- popaccount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popaccount.cpp b/popaccount.cpp index 7973b8f92..863e547a2 100644 --- a/popaccount.cpp +++ b/popaccount.cpp @@ -507,7 +507,7 @@ void PopAccount::slotJobFinished() { // if there are mails which should be checkedc download the headers if ( ( mHeadersOnServer.count() > 0 ) && ( mFilterOnServer == true ) ) { KURL url = getUrl(); - QByteArray headerIds = mHeadersOnServer[0]->id(); + QString headerIds = mHeadersOnServer[0]->id(); for ( int i = 1; i < mHeadersOnServer.count(); ++i ) { headerIds += ','; headerIds += mHeadersOnServer[i]->id();