aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser-factory.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-04-24 01:15:07 +0800
committerDan Winship <danw@src.gnome.org>2000-04-24 01:15:07 +0800
commit4c1c537e19a6397fc4b3418e5db6eea4239ab741 (patch)
tree3402e5a878062bb5e81970729c9acc94013bc1eb /mail/folder-browser-factory.c
parentb33db409a60f49c61d035f7d3cc2e1232ec8a186 (diff)
downloadgsoc2013-evolution-4c1c537e19a6397fc4b3418e5db6eea4239ab741.tar
gsoc2013-evolution-4c1c537e19a6397fc4b3418e5db6eea4239ab741.tar.gz
gsoc2013-evolution-4c1c537e19a6397fc4b3418e5db6eea4239ab741.tar.bz2
gsoc2013-evolution-4c1c537e19a6397fc4b3418e5db6eea4239ab741.tar.lz
gsoc2013-evolution-4c1c537e19a6397fc4b3418e5db6eea4239ab741.tar.xz
gsoc2013-evolution-4c1c537e19a6397fc4b3418e5db6eea4239ab741.tar.zst
gsoc2013-evolution-4c1c537e19a6397fc4b3418e5db6eea4239ab741.zip
rename "send" to "send_msg", to avoid name clash with the tcp function.
* folder-browser-factory.c: rename "send" to "send_msg", to avoid name clash with the tcp function. Connect the "forward" button. * mail-ops.c: rename "send" to "send_msg", to avoid name clash with the tcp function. Add forward_msg function. * mail-format.c (mail_generate_forward): support function for forward_msg. Pretty much a big kludge right now, pending the attachment/attachment-bar changes. svn path=/trunk/; revision=2562
Diffstat (limited to 'mail/folder-browser-factory.c')
-rw-r--r--mail/folder-browser-factory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c
index e86fddd9e9..0f438a7118 100644
--- a/mail/folder-browser-factory.c
+++ b/mail/folder-browser-factory.c
@@ -107,7 +107,7 @@ random_cb (GtkWidget *button, gpointer user_data)
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"), send_msg, GNOME_STOCK_PIXMAP_MAIL_SND),
GNOMEUIINFO_ITEM_STOCK (N_("Find"), N_("Find messages"), random_cb, GNOME_STOCK_PIXMAP_SEARCH),
GNOMEUIINFO_SEPARATOR,
@@ -115,7 +115,7 @@ static GnomeUIInfo gnome_toolbar [] = {
GNOMEUIINFO_ITEM_STOCK (N_("Reply"), N_("Reply to the sender of this message"), reply_to_sender, GNOME_STOCK_PIXMAP_MAIL_RPL),
GNOMEUIINFO_ITEM_STOCK (N_("Reply to All"), N_("Reply to all recipients of this message"), reply_to_all, GNOME_STOCK_PIXMAP_MAIL_RPL),
- GNOMEUIINFO_ITEM_STOCK (N_("Forward"), N_("Forward this message"), random_cb, GNOME_STOCK_PIXMAP_MAIL_FWD),
+ GNOMEUIINFO_ITEM_STOCK (N_("Forward"), N_("Forward this message"), forward_msg, GNOME_STOCK_PIXMAP_MAIL_FWD),
GNOMEUIINFO_SEPARATOR,
@@ -139,7 +139,7 @@ control_activate (BonoboControl *control, BonoboUIHandler *uih)
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, send_msg, NULL);
folder_browser = bonobo_control_get_widget (control);