diff options
Diffstat (limited to 'modules/mail')
-rw-r--r-- | modules/mail/e-mail-shell-backend.c | 3 | ||||
-rw-r--r-- | modules/mail/e-mail-shell-view-actions.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/modules/mail/e-mail-shell-backend.c b/modules/mail/e-mail-shell-backend.c index cc75844c2d..76762c308c 100644 --- a/modules/mail/e-mail-shell-backend.c +++ b/modules/mail/e-mail-shell-backend.c @@ -219,7 +219,6 @@ mail_shell_backend_sync_store_done_cb (CamelStore *store, static void mail_shell_backend_sync_store_cb (CamelStore *store, - const gchar *display_name, EMailShellBackend *mail_shell_backend) { mail_shell_backend->priv->mail_sync_in_progress++; @@ -248,7 +247,7 @@ mail_shell_backend_mail_sync (EMailShellBackend *mail_shell_backend) goto exit; e_mail_store_foreach ( - (GHFunc) mail_shell_backend_sync_store_cb, + (GFunc) mail_shell_backend_sync_store_cb, mail_shell_backend); exit: diff --git a/modules/mail/e-mail-shell-view-actions.c b/modules/mail/e-mail-shell-view-actions.c index 53cd908734..3569d1b144 100644 --- a/modules/mail/e-mail-shell-view-actions.c +++ b/modules/mail/e-mail-shell-view-actions.c @@ -197,7 +197,6 @@ action_mail_download_finished_cb (CamelStore *store, static void action_mail_download_foreach_cb (CamelStore *store, - const gchar *display_name, EMailReader *reader) { EActivity *activity; @@ -226,7 +225,7 @@ action_mail_download_cb (GtkAction *action, reader = E_MAIL_READER (mail_view); e_mail_store_foreach ( - (GHFunc) action_mail_download_foreach_cb, reader); + (GFunc) action_mail_download_foreach_cb, reader); } static void |