? evolution-mail-fix.patch Index: folder-browser-factory.c =================================================================== RCS file: /cvs/gnome/evolution/mail/folder-browser-factory.c,v retrieving revision 1.25 diff -u -r1.25 folder-browser-factory.c --- folder-browser-factory.c 2000/04/22 18:07:14 1.25 +++ folder-browser-factory.c 2000/04/23 18:31:20 @@ -107,7 +107,7 @@ static GnomeUIInfo gnome_toolbar [] = { GNOMEUIINFO_ITEM_STOCK (N_("New mail"), N_("Check for new mail"), fetch_mail, GNOME_STOCK_PIXMAP_MAIL_RCV), - GNOMEUIINFO_ITEM_STOCK (N_("Send"), N_("Send a new message"), send, GNOME_STOCK_PIXMAP_MAIL_SND), + GNOMEUIINFO_ITEM_STOCK (N_("Send"), N_("Send a new message"), mail_send, GNOME_STOCK_PIXMAP_MAIL_SND), GNOMEUIINFO_ITEM_STOCK (N_("Find"), N_("Find messages"), random_cb, GNOME_STOCK_PIXMAP_SEARCH), GNOMEUIINFO_SEPARATOR, @@ -139,7 +139,7 @@ bonobo_ui_handler_menu_new_item (uih, "/File/Mail", N_("_Mail"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, - 0, 0, send, NULL); + 0, 0, mail_send, NULL); folder_browser = bonobo_control_get_widget (control); Index: mail-ops.c =================================================================== RCS file: /cvs/gnome/evolution/mail/mail-ops.c,v retrieving revision 1.5 diff -u -r1.5 mail-ops.c --- mail-ops.c 2000/04/22 18:34:58 1.5 +++ mail-ops.c 2000/04/23 18:31:22 @@ -275,7 +275,7 @@ void -send (GtkWidget *widget, gpointer user_data) +mail_send (GtkWidget *widget, gpointer user_data) { GtkWidget *composer; Index: mail-ops.h =================================================================== RCS file: /cvs/gnome/evolution/mail/mail-ops.h,v retrieving revision 1.2 diff -u -r1.2 mail-ops.h --- mail-ops.h 2000/04/22 18:07:14 1.2 +++ mail-ops.h 2000/04/23 18:31:22 @@ -1,5 +1,5 @@ void fetch_mail (GtkWidget *button, gpointer user_data); -void send (GtkWidget *button, gpointer user_data); +void mail_send (GtkWidget *button, gpointer user_data); void forward_msg (GtkWidget *button, gpointer user_data); void reply_to_sender (GtkWidget *button, gpointer user_data); void reply_to_all (GtkWidget *button, gpointer user_data);