From 6796ecd54fa28dd9fc710daa933e2f0ee0f45ad0 Mon Sep 17 00:00:00 2001 From: Don Sanders Date: Thu, 13 Jul 2000 22:07:48 +0000 Subject: [PATCH] Show the username/password dialog when the user can't login because an error occurred when attempting to connect to the pop server. svn path=/trunk/kdenetwork/kmail/; revision=56687 --- kmacctexppop.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kmacctexppop.cpp b/kmacctexppop.cpp index d664d065c..134b36f67 100644 --- a/kmacctexppop.cpp +++ b/kmacctexppop.cpp @@ -719,8 +719,11 @@ void KMAcctExpPop::slotResult( KIO::Job* ) { if ( job->error() ) { - if (interactive) + if (interactive) { + // force the dialog to be shown next time the account is checked + if (!mStorePasswd) mPasswd = ""; job->showErrorDialog(); + } slotCancel(); } else