From 8634c7a4ecc6d1e41fab52fc3e83333fff6bd6bd Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 5 Feb 2001 23:04:08 +0000 Subject: Moved bonobo includes from the .c to the .h. Include 2001-02-05 Christopher James Lahey * 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 . (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 --- mail/mail-summary.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mail/mail-summary.c') diff --git a/mail/mail-summary.c b/mail/mail-summary.c index dbe3151d21..bc04f19532 100644 --- a/mail/mail-summary.c +++ b/mail/mail-summary.c @@ -440,7 +440,7 @@ new_folder_cb (EvolutionStorageListener *listener, g_print ("New folder: %s\n", path); if (summary->idle == 0) - summary->idle = g_idle_add (idle_check, summary); + summary->idle = g_idle_add ((GSourceFunc) idle_check, summary); } static void @@ -451,7 +451,7 @@ removed_folder_cb (EvolutionStorageListener *listener, g_print ("Removed folder: %s\n", path); if (summary->idle == 0) - summary->idle = g_idle_add (idle_check, summary); + summary->idle = g_idle_add ((GSourceFunc) idle_check, summary); } #endif @@ -523,7 +523,7 @@ create_summary_view (ExecutiveSummaryComponentFactory *_factory, #endif if (summary->idle == 0) - summary->idle = g_idle_add (idle_check, summary); + summary->idle = g_idle_add ((GSourceFunc) idle_check, summary); return component; } -- cgit