aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-11-03 05:44:10 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-11-03 05:44:10 +0800
commit3e6229afab19ec080a1d48abd75e05bed69312a9 (patch)
tree2f3f28ab5619c6d6a8ee7168f5762aff76190865
parent71ccf52166cceafffa6b41ec7c739b654f6f8294 (diff)
downloadgsoc2013-evolution-3e6229afab19ec080a1d48abd75e05bed69312a9.tar
gsoc2013-evolution-3e6229afab19ec080a1d48abd75e05bed69312a9.tar.gz
gsoc2013-evolution-3e6229afab19ec080a1d48abd75e05bed69312a9.tar.bz2
gsoc2013-evolution-3e6229afab19ec080a1d48abd75e05bed69312a9.tar.lz
gsoc2013-evolution-3e6229afab19ec080a1d48abd75e05bed69312a9.tar.xz
gsoc2013-evolution-3e6229afab19ec080a1d48abd75e05bed69312a9.tar.zst
gsoc2013-evolution-3e6229afab19ec080a1d48abd75e05bed69312a9.zip
Sync with message menu. Addresses bugzilla bug #778.
2000-11-02 Jeffrey Stedfast <fejj@helixcode.com> * message-list.c (on_right_click): Sync with message menu. Addresses bugzilla bug #778. svn path=/trunk/; revision=6360
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/message-list.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index f17a074338..b3f50f0da4 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-02 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * message-list.c (on_right_click): Sync with message
+ menu. Addresses bugzilla bug #778.
+
2000-11-02 Christopher James Lahey <clahey@helixcode.com>
* message-list.c: Turn on draw grid for the main ETable (this may
diff --git a/mail/message-list.c b/mail/message-list.c
index a3fd78c6bc..a743d6d66a 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -2036,9 +2036,12 @@ on_right_click (ETableScrolled *table, gint row, gint col, GdkEvent *event, Mess
{ _("Reply to All"), NULL, GTK_SIGNAL_FUNC (reply_to_all), 0 },
{ _("Forward Message"), NULL, GTK_SIGNAL_FUNC (forward_msg), 0 },
{ "", NULL, GTK_SIGNAL_FUNC (NULL), 0 },
+ { _("Mark as Read"), NULL, GTK_SIGNAL_FUNC (mark_as_seen), 0 },
+ { _("Mark as Unread"), NULL, GTK_SIGNAL_FUNC (mark_as_unseen), 0 },
{ _("Delete Message"), NULL, GTK_SIGNAL_FUNC (delete_msg), 0 },
{ _("Move Message"), NULL, GTK_SIGNAL_FUNC (move_msg), 0 },
{ _("Copy Message"), NULL, GTK_SIGNAL_FUNC (copy_msg), 0 },
+ { _("Apply Filters"), NULL, GTK_SIGNAL_FUNC (apply_filters), 0 },
{ "", NULL, GTK_SIGNAL_FUNC (NULL), 0 },
{ _("VFolder on Subject"), NULL, GTK_SIGNAL_FUNC (vfolder_subject), 2 },
{ _("VFolder on Sender"), NULL, GTK_SIGNAL_FUNC (vfolder_sender), 2 },