From 0c83b9b25d967ce6d6793ef851e86bc272a2f129 Mon Sep 17 00:00:00 2001
From: Matthew Barnes <mbarnes@redhat.com>
Date: Fri, 18 Nov 2011 09:09:48 -0500
Subject: Miscellaneous cleanups.

---
 mail/mail-config.c | 35 +++++++++++++++++++++--------------
 1 file changed, 21 insertions(+), 14 deletions(-)

(limited to 'mail/mail-config.c')

diff --git a/mail/mail-config.c b/mail/mail-config.c
index 1e628035a1..89c26eaaa5 100644
--- a/mail/mail-config.c
+++ b/mail/mail-config.c
@@ -253,34 +253,41 @@ mail_config_init (EMailSession *session)
 	/* Composer Configuration */
 
 	settings_outlook_filenames_changed (mail_settings, NULL, NULL);
-	g_signal_connect (mail_settings, "changed::composer-outlook-filenames",
-			  G_CALLBACK (settings_outlook_filenames_changed), NULL);
+	g_signal_connect (
+		mail_settings, "changed::composer-outlook-filenames",
+		G_CALLBACK (settings_outlook_filenames_changed), NULL);
 
 	/* Display Configuration */
 
-	g_signal_connect (mail_settings, "changed::address-compress",
-			  G_CALLBACK (settings_bool_value_changed), &config->address_compress);
+	g_signal_connect (
+		mail_settings, "changed::address-compress",
+		G_CALLBACK (settings_bool_value_changed), &config->address_compress);
 	config->address_compress = g_settings_get_boolean (mail_settings, "address-compress");
 
-	g_signal_connect (mail_settings, "changed::address-count",
-			  G_CALLBACK (settings_int_value_changed), &config->address_count);
+	g_signal_connect (
+		mail_settings, "changed::address-count",
+		G_CALLBACK (settings_int_value_changed), &config->address_count);
 	config->address_count = g_settings_get_int (mail_settings, "address-count");
 
 	/* Junk Configuration */
 
-	g_signal_connect (mail_settings, "changed::junk-check-custom-header",
-			  G_CALLBACK (settings_jh_check_changed), session);
+	g_signal_connect (
+		mail_settings, "changed::junk-check-custom-header",
+		G_CALLBACK (settings_jh_check_changed), session);
 	config->jh_check = g_settings_get_boolean (mail_settings, "junk-check-custom-header");
 
-	g_signal_connect (mail_settings, "changed::junk-custom-header",
-			  G_CALLBACK (settings_jh_headers_changed), session);
+	g_signal_connect (
+		mail_settings, "changed::junk-custom-header",
+		G_CALLBACK (settings_jh_headers_changed), session);
 
-	g_signal_connect (mail_settings, "changed::junk-lookup-addressbook",
-			  G_CALLBACK (settings_bool_value_changed), &config->book_lookup);
+	g_signal_connect (
+		mail_settings, "changed::junk-lookup-addressbook",
+		G_CALLBACK (settings_bool_value_changed), &config->book_lookup);
 	config->book_lookup = g_settings_get_boolean (mail_settings, "junk-lookup-addressbook");
 
-	g_signal_connect (mail_settings, "changed::junk-lookup-addressbook-local-only",
-			  G_CALLBACK (settings_bool_value_changed), &config->book_lookup_local_only);
+	g_signal_connect (
+		mail_settings, "changed::junk-lookup-addressbook-local-only",
+		G_CALLBACK (settings_bool_value_changed), &config->book_lookup_local_only);
 	config->book_lookup_local_only = g_settings_get_boolean (mail_settings, "junk-lookup-addressbook-local-only");
 
 	settings_jh_check_changed (mail_settings, NULL, session);
-- 
cgit