diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-01-10 23:30:24 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-01-11 00:20:32 +0800 |
commit | b1ed35f70d09601717e32eb5c762f79908b0bcf8 (patch) | |
tree | c4fa0b5f5d0dc7dd8cb1a2c3931fd25d97d08b41 /modules | |
parent | 54442be416bcdb1c3632fb9211d335f9b5cb3397 (diff) | |
download | gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar.gz gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar.zst gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/backup-restore/evolution-backup-tool.c | 17 | ||||
-rw-r--r-- | modules/mail/e-mail-shell-view-actions.c | 9 |
2 files changed, 16 insertions, 10 deletions
diff --git a/modules/backup-restore/evolution-backup-tool.c b/modules/backup-restore/evolution-backup-tool.c index d38492a1b1..7c8fc72273 100644 --- a/modules/backup-restore/evolution-backup-tool.c +++ b/modules/backup-restore/evolution-backup-tool.c @@ -698,7 +698,7 @@ end: txt = _("Restarting Evolution"); /* wait 5 seconds before restarting evolution, thus any - changes being done are updated in source registry too */ + * changes being done are updated in source registry too */ g_usleep (G_USEC_PER_SEC * 5); run_evolution_no_wait (); @@ -975,7 +975,8 @@ main (gint argc, gtk_widget_show (widget); gtk_grid_attach (GTK_GRID (container), widget, 0, 0, 1, 3); - g_object_set (G_OBJECT (widget), + g_object_set ( + G_OBJECT (widget), "halign", GTK_ALIGN_FILL, "valign", GTK_ALIGN_FILL, "vexpand", TRUE, @@ -1000,7 +1001,8 @@ main (gint argc, g_free (markup); gtk_grid_attach (GTK_GRID (container), widget, 1, 0, 1, 1); - g_object_set (G_OBJECT (widget), + g_object_set ( + G_OBJECT (widget), "halign", GTK_ALIGN_FILL, "hexpand", TRUE, "valign", GTK_ALIGN_FILL, @@ -1016,7 +1018,8 @@ main (gint argc, g_free (markup); gtk_grid_attach (GTK_GRID (container), widget, 1, 1, 1, 1); - g_object_set (G_OBJECT (widget), + g_object_set ( + G_OBJECT (widget), "halign", GTK_ALIGN_FILL, "hexpand", TRUE, "valign", GTK_ALIGN_FILL, @@ -1033,7 +1036,8 @@ main (gint argc, g_free (str); gtk_grid_attach (GTK_GRID (container), widget, 1, 2, 1, 1); - g_object_set (G_OBJECT (widget), + g_object_set ( + G_OBJECT (widget), "halign", GTK_ALIGN_FILL, "hexpand", TRUE, "valign", GTK_ALIGN_FILL, @@ -1043,7 +1047,8 @@ main (gint argc, } else gtk_grid_attach (GTK_GRID (container), pbar, 1, 2, 1, 1); - g_object_set (G_OBJECT (pbar), + g_object_set ( + G_OBJECT (pbar), "halign", GTK_ALIGN_FILL, "hexpand", TRUE, "valign", GTK_ALIGN_FILL, diff --git a/modules/mail/e-mail-shell-view-actions.c b/modules/mail/e-mail-shell-view-actions.c index 1d39ad7cd2..92cb0d5814 100644 --- a/modules/mail/e-mail-shell-view-actions.c +++ b/modules/mail/e-mail-shell-view-actions.c @@ -126,8 +126,8 @@ action_mail_account_properties_cb (GtkAction *action, static void account_refresh_folder_info_received_cb (GObject *source, - GAsyncResult *result, - gpointer user_data) + GAsyncResult *result, + gpointer user_data) { CamelStore *store; CamelFolderInfo *info; @@ -139,7 +139,7 @@ account_refresh_folder_info_received_cb (GObject *source, info = camel_store_get_folder_info_finish (store, result, &error); if (info) { /* provider takes care of notifications of new/removed folders, - thus it's enough to free the returned list */ + * thus it's enough to free the returned list */ camel_store_free_folder_info (store, info); } @@ -172,7 +172,8 @@ action_mail_account_refresh_cb (GtkAction *action, activity = e_mail_reader_new_activity (reader); cancellable = e_activity_get_cancellable (activity); - camel_store_get_folder_info (store, NULL, CAMEL_STORE_FOLDER_INFO_RECURSIVE, + camel_store_get_folder_info ( + store, NULL, CAMEL_STORE_FOLDER_INFO_RECURSIVE, G_PRIORITY_DEFAULT, cancellable, account_refresh_folder_info_received_cb, activity); } |