diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-02-06 07:04:08 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-02-06 07:04:08 +0800 |
commit | 8634c7a4ecc6d1e41fab52fc3e83333fff6bd6bd (patch) | |
tree | 52d488e0a1c73dfa3472d06c314287f7ec8e7319 /mail/mail-send-recv.c | |
parent | 11f8fdd1cc92671ed3c2bdadae1aca673b7c4987 (diff) | |
download | gsoc2013-evolution-8634c7a4ecc6d1e41fab52fc3e83333fff6bd6bd.tar.gz gsoc2013-evolution-8634c7a4ecc6d1e41fab52fc3e83333fff6bd6bd.tar.zst gsoc2013-evolution-8634c7a4ecc6d1e41fab52fc3e83333fff6bd6bd.zip |
Moved bonobo includes from the .c to the .h. Include
2001-02-05 Christopher James Lahey <clahey@ximian.com>
* evolution-mbox-importer.c, evolution-mbox-importer.h: Moved
bonobo includes from the .c to the .h. Include
evolution-mbox-importer.h in evolution-mbox-importer.c.
* evolution-outlook-importer.c, evolution-outlook-importer.h:
Moved bonobo includes from the .c to the .h. Include
evolution-outlook-importer.h in evolution-outlook-importer.c.
* mail-callbacks.c: Include mail-send-recv.h.
* mail-local.c (mail_local_lookup_folder): Cast local_store to
CAMEL_STORE.
* mail-mt.c (mail_msg_cleanup): Make this function static.
* mail-send-recv.c, mail-send-recv.h: Created mail_send_recv.h.
Included it in mail-send-recv.c. Added a #include
<libgnomeui/gnome-window-icon.h>.
(mail_send_receive): Added a cast.
* mail-summary.c (new_folder_cb, removed_folder_cb,
create_summary_view): Cast the source func in calling g_idle_add.
svn path=/trunk/; revision=8002
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 87b5cebedf..b9f1f70316 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -20,6 +20,9 @@ * */ +#include "config.h" +#include "mail-send-recv.h" + #include <stdio.h> #include <string.h> @@ -43,6 +46,7 @@ #include <gtk/gtk.h> #include <libgnomeui/gnome-stock.h> #include <libgnomeui/gnome-dialog.h> +#include <libgnomeui/gnome-window-icon.h> /* send/receive email */ @@ -521,7 +525,7 @@ void mail_send_receive(void) smtp one. */ data = build_dialogue(sources, outbox_folder, account->transport->url); scan = data->infos; - gd = data->gd; + gd = GTK_WIDGET(data->gd); gtk_signal_connect((GtkObject *)gd, "destroy", gtk_widget_destroyed, &gd); while (scan) { struct _send_info *info = scan->data; |