-rw-r--r-- | kmicromail/opiemail.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp index b2119e6..19ffdb3 100644 --- a/kmicromail/opiemail.cpp +++ b/kmicromail/opiemail.cpp @@ -8,8 +8,9 @@ #include "mailistviewitem.h" #include "viewmail.h" #include "selectstore.h" #include "selectsmtp.h" +#include "accountitem.h" #include <qmessagebox.h> #include <qtimer.h> #include <libkdepim/externalapphandler.h> @@ -243,9 +244,16 @@ void OpieMail::displayMail() { ( (MailListViewItem*)item )->setPixmap( 0, QPixmap() ); } } - +void OpieMail::slotGetMail() +{ + QListViewItem * item = folderView->currentItem(); + if ( ! item ) return; + while ( item->parent () ) + item = item->parent (); + ((AccountViewItem *)item)->contextMenuSelected( 101 ); +} void OpieMail::slotDeleteMail() { if (!mailView->currentItem()) return; RecMailP mail = ((MailListViewItem*)mailView->currentItem() )->data(); |