diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-08 00:22:36 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:10 +0800 |
commit | 578214584caa7805edca09b27e2306dc31d80fb6 (patch) | |
tree | dfa18882e01b362a721fd47bd901538bc5e3a9c4 /mail/mail-send-recv.c | |
parent | 30fe010cffa6f290170147ea9a8b617d04fab39d (diff) | |
download | gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar.gz gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar.zst gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.zip |
Whitespace and coding style cleanups.
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 7bc8384802..71037cb5b2 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -69,7 +69,10 @@ struct _folder_info { gchar *uri; CamelFolder *folder; time_t update; - gint count; /* how many times updated, to slow it down as we go, if we have lots */ + + /* How many times updated, to slow it + * down as we go, if we have lots. */ + gint count; }; struct _send_data { @@ -78,7 +81,9 @@ struct _send_data { GtkDialog *gd; gint cancelled; - CamelFolder *inbox; /* since we're never asked to update this one, do it ourselves */ + /* Since we're never asked to update + * this one, do it ourselves. */ + CamelFolder *inbox; time_t inbox_update; GMutex *lock; @@ -544,7 +549,8 @@ build_dialog (GtkWindow *parent, info->keep_on_server = source->keep_on_server; info->cancellable = camel_operation_new (); info->state = allow_send ? SEND_ACTIVE : SEND_COMPLETE; - info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info); + info->timeout_id = g_timeout_add ( + STATUS_TIMEOUT, operation_status_timeout, info); g_signal_connect ( info->cancellable, "status", @@ -558,7 +564,8 @@ build_dialog (GtkWindow *parent, e_iterator_next (iter); continue; } else if (info->timeout_id == 0) - info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info); + info->timeout_id = g_timeout_add ( + STATUS_TIMEOUT, operation_status_timeout, info); recv_icon = gtk_image_new_from_icon_name ( "mail-inbox", GTK_ICON_SIZE_LARGE_TOOLBAR); @@ -640,7 +647,8 @@ build_dialog (GtkWindow *parent, info->keep_on_server = FALSE; info->cancellable = camel_operation_new (); info->state = SEND_ACTIVE; - info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info); + info->timeout_id = g_timeout_add ( + STATUS_TIMEOUT, operation_status_timeout, info); g_free (transport_uid); @@ -651,7 +659,8 @@ build_dialog (GtkWindow *parent, g_hash_table_insert (data->active, (gpointer) SEND_URI_KEY, info); list = g_list_prepend (list, info); } else if (info->timeout_id == 0) - info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info); + info->timeout_id = g_timeout_add ( + STATUS_TIMEOUT, operation_status_timeout, info); send_icon = gtk_image_new_from_icon_name ( "mail-outbox", GTK_ICON_SIZE_LARGE_TOOLBAR); |