aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/e-mail-backend.c5
-rw-r--r--mail/e-mail-migrate.c5
-rw-r--r--mail/em-subscription-editor.c8
3 files changed, 12 insertions, 6 deletions
diff --git a/mail/e-mail-backend.c b/mail/e-mail-backend.c
index e51a83eacc..ff2b8c8442 100644
--- a/mail/e-mail-backend.c
+++ b/mail/e-mail-backend.c
@@ -638,8 +638,9 @@ mail_backend_folder_renamed_cb (MailFolderCache *folder_cache,
/* Ignore errors; doesn't matter. */
if (g_rename (oldname, newname) == -1) {
- g_warning ("%s: Failed to rename '%s' to '%s': %s", G_STRFUNC,
- oldname, newname, g_strerror (errno));
+ g_warning (
+ "%s: Failed to rename '%s' to '%s': %s", G_STRFUNC,
+ oldname, newname, g_strerror (errno));
}
g_free (oldname);
diff --git a/mail/e-mail-migrate.c b/mail/e-mail-migrate.c
index 6a97b7342f..dbd80334cc 100644
--- a/mail/e-mail-migrate.c
+++ b/mail/e-mail-migrate.c
@@ -267,8 +267,9 @@ em_rename_view_in_folder (gpointer data,
newname = g_build_filename (views_dir, newfile, NULL);
if (g_rename (oldname, newname) == -1) {
- g_warning ("%s: Failed to rename '%s' to '%s': %s", G_STRFUNC,
- oldname, newname, g_strerror (errno));
+ g_warning (
+ "%s: Failed to rename '%s' to '%s': %s", G_STRFUNC,
+ oldname, newname, g_strerror (errno));
}
g_checksum_free (checksum);
diff --git a/mail/em-subscription-editor.c b/mail/em-subscription-editor.c
index 52a7314ec5..86d99838d0 100644
--- a/mail/em-subscription-editor.c
+++ b/mail/em-subscription-editor.c
@@ -1596,8 +1596,12 @@ subscription_editor_constructed (GObject *object)
/* Chain up to parent's constructed() method. */
G_OBJECT_CLASS (em_subscription_editor_parent_class)->constructed (object);
- g_signal_connect (editor, "delete-event", G_CALLBACK (subscription_editor_delete_event_cb), NULL);
- g_signal_connect (editor, "response", G_CALLBACK (subscription_editor_response_cb), NULL);
+ g_signal_connect (
+ editor, "delete-event",
+ G_CALLBACK (subscription_editor_delete_event_cb), NULL);
+ g_signal_connect (
+ editor, "response",
+ G_CALLBACK (subscription_editor_response_cb), NULL);
}
static void