The configuration of the locking method didn't really work.

svn path=/trunk/kdenetwork/kmail/; revision=71367
wilder-work
Michael Haeckel 26 years ago
parent e7ba72e043
commit 904eed6b70
  1. 1
      kmacctlocal.cpp
  2. 4
      kmacctlocal.h

@ -75,6 +75,7 @@ void KMAcctLocal::pseudoAssign(KMAccount *account)
setLocation(acct->location());
setCheckInterval(acct->checkInterval());
setCheckExclude(acct->checkExclude());
setLockType(acct->lockType());
setFolder(acct->folder());
setPrecommand(acct->precommand());
}

@ -25,6 +25,10 @@ public:
const QString& location(void) const { return mLocation; }
virtual void setLocation(const QString&);
/** Acceso to Locking method */
LockType lockType(void) { return mLock; }
virtual void setLockType(LockType lt) { mLock = lt; }
virtual const char* type(void) const;
virtual void processNewMail(bool);
virtual void readConfig(KConfig&);

Loading…
Cancel
Save