From kde-commits Fri Dec 31 22:49:21 2004 From: Till Adam Date: Fri, 31 Dec 2004 22:49:21 +0000 To: kde-commits Subject: kdepim/kmail Message-Id: <20041231224921.9D4701BEFB () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110453366804338 CVS commit by tilladam: Make sure the noop timer is restarted when we connect a new slave. M +2 -0 imapaccountbase.cpp 1.116 --- kdepim/kmail/imapaccountbase.cpp #1.115:1.116 @@ -279,4 +279,5 @@ namespace KMail { if ( mSlave->isConnected() ) { mSlaveConnected = true; + mNoopTimer.start( 60000 ); // make sure we start sending noops again return Connected; } @@ -506,4 +507,5 @@ namespace KMail { if (aSlave != mSlave) return; mSlaveConnected = true; + mNoopTimer.start( 60000 ); // make sure we start sending noops again emit connectionResult( 0, QString::null ); // success }