-rw-r--r-- | kmicromail/opiemail.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp index 7ccfb65..3cbac8e 100644 --- a/kmicromail/opiemail.cpp +++ b/kmicromail/opiemail.cpp @@ -320,9 +320,12 @@ void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int ) if (m) { if (mailtype==MAILLIB::A_NNTP) { m->insertItem(tr("Read this posting"),this,SLOT(displayMail())); -// m->insertItem(tr("Copy this posting"),this,SLOT(slotMoveCopyMail())); + m->insertItem(tr("Copy this posting"),this,SLOT(slotMoveCopyMail())); + m->insertSeparator(); + m->insertItem(tr("Copy all selected postings"),this,SLOT(slotMoveCopyAllMail())); + m->insertItem(tr("Clear selection"),this,SLOT(clearSelection())); } else { if (folderView->currentisDraft()) { m->insertItem(tr("Edit this mail"),this,SLOT(reEditMail())); } |