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
wilder-work
Laurent Montel 21 years ago
parent d01d4164aa
commit 479a4400ea
  1. 2
      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();

Loading…
Cancel
Save