modified some of the EPopupMenu structures to account for differences in

* mail-display.c: (pixmap_press): modified some of the EPopupMenu
	structures to account for differences in the popup menu API (as
	informed by Jeff.)

svn path=/trunk/; revision=6486
This commit is contained in:
Jesse Pavel
2000-11-07 19:03:10 +00:00
parent 1c81061178
commit 35a8813a48
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2000-11-07 Jesse Pavel <jpavel@helixcode.com>
* mail-display.c: (pixmap_press): modified some of the EPopupMenu
structures to account for differences in the popup menu API (as
informed by Jeff.)
2000-11-07 Ettore Perazzoli <ettore@helixcode.com>
* Makefile.am (INCLUDES): Add the composer dirs.

View File

@ -272,11 +272,11 @@ pixmap_press (GtkWidget *ebox, GdkEventButton *event, gpointer user_data)
{
EPopupMenu menu[] = {
{ N_("Save to Disk..."), NULL,
GTK_SIGNAL_FUNC (save_cb), 0 },
GTK_SIGNAL_FUNC (save_cb), NULL, 0 },
{ N_("Open in %s..."), NULL,
GTK_SIGNAL_FUNC (launch_cb), 1 },
GTK_SIGNAL_FUNC (launch_cb), NULL, 1 },
{ N_("View Inline"), NULL,
GTK_SIGNAL_FUNC (inline_cb), 2 },
GTK_SIGNAL_FUNC (inline_cb), NULL, 2 },
{ NULL, NULL, NULL, 0 }
};
CamelMimePart *part;