aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJason Leach <jleach@ximian.com>2001-08-12 08:45:18 +0800
committerJacob Leach <jleach@src.gnome.org>2001-08-12 08:45:18 +0800
commit5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707 (patch)
tree33146a10f8b65b195ae7053413c524e6264a5ef8 /mail
parent68c24542fe750defada7a92dd507e772a76a4dc3 (diff)
downloadgsoc2013-evolution-5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707.tar
gsoc2013-evolution-5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707.tar.gz
gsoc2013-evolution-5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707.tar.bz2
gsoc2013-evolution-5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707.tar.lz
gsoc2013-evolution-5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707.tar.xz
gsoc2013-evolution-5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707.tar.zst
gsoc2013-evolution-5f6e3bde3bbaba4948cd0df69d66f1d3e8f98707.zip
Make the right click "Resend..." into "Edit as New Message...", bug #6838.
2001-08-11 Jason Leach <jleach@ximian.com> * folder-browser.c: Make the right click "Resend..." into "Edit as New Message...", bug #6838. svn path=/trunk/; revision=11927
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog3
-rw-r--r--mail/folder-browser.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index de86ff8494..b5aa08a281 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,8 @@
2001-08-11 Jason Leach <jleach@ximian.com>
+ * folder-browser.c: Make the right click "Resend..." into "Edit as
+ New Message...", bug #6838.
+
* mail-accounts.h: Remove unecessary #include <camel.h>
* mail.h: Removed a prototype for a non-existant
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 217f9aff2f..efa79fc179 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -1277,7 +1277,7 @@ static EPopupMenu filter_menu[] = {
static EPopupMenu context_menu[] = {
{ N_("_Open"), NULL,
GTK_SIGNAL_FUNC (open_msg), NULL, 0 },
- { N_("R_esend..."), NULL,
+ { N_("_Edit as New Message..."), NULL,
GTK_SIGNAL_FUNC (resend_msg), NULL, CAN_RESEND },
{ N_("_Save As..."), NULL,
GTK_SIGNAL_FUNC (save_msg), NULL, 0 },