From 9454ac48a53f3b49e03288311b71436ccacd2d04 Mon Sep 17 00:00:00 2001 From: alwin Date: Wed, 10 Mar 2004 22:44:44 +0000 Subject: some bugfixes When edit a mail to send and cancel is pressed the mail can stored in a draft folder and later edit again. This moment we will not store attachments into drafts. --- (limited to 'noncore/net/mail/accountitem.cpp') diff --git a/noncore/net/mail/accountitem.cpp b/noncore/net/mail/accountitem.cpp index 0d636a4..396dcb7 100644 --- a/noncore/net/mail/accountitem.cpp +++ b/noncore/net/mail/accountitem.cpp @@ -913,9 +913,9 @@ void MHfolderItem::initName() else if (bName.lower() == "inbox") { setPixmap( 0, PIXMAP_INBOXFOLDER); - } - else - { + } else if (bName.lower() == "drafts") { + setPixmap(0, Resource::loadPixmap("inline/edit")); + } else { setPixmap( 0, PIXMAP_MBOXFOLDER ); } setText( 0, bName ); @@ -1023,6 +1023,12 @@ void MHfolderItem::contextMenuSelected(int which) } } +bool MHfolderItem::isDraftfolder() +{ + if (folder && folder->getName()==AbstractMail::defaultLocalfolder()+"/"+AbstractMail::draftFolder()) return true; + return false; +} + /** * Generic stuff */ @@ -1127,3 +1133,8 @@ AccountViewItem*AccountViewItem::findSubItem(const QString&path,AccountViewItem* } return pitem; } + +bool AccountViewItem::isDraftfolder() +{ + return false; +} -- cgit v0.9.0.2