From 299521f02c02278857dfd2561973dc0c94e44b57 Mon Sep 17 00:00:00 2001
From: Matthew Barnes <mbarnes@redhat.com>
Date: Sun, 1 Apr 2012 22:31:50 -0400
Subject: Whitespace cleanup.

Replace 8-space indentation with tab characters, and various other
automated cleanups.
---
 plugins/email-custom-header/email-custom-header.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'plugins/email-custom-header/email-custom-header.c')

diff --git a/plugins/email-custom-header/email-custom-header.c b/plugins/email-custom-header/email-custom-header.c
index 324007d615..f6db2c2a35 100644
--- a/plugins/email-custom-header/email-custom-header.c
+++ b/plugins/email-custom-header/email-custom-header.c
@@ -455,7 +455,7 @@ epech_custom_header_options_commit (EMsgComposer *comp,
 	if (!user_data || !EMAIL_CUSTOM_HEADER_OPTIONS_IS_DIALOG (user_data))
 		return;
 
-        new_email_custom_header_window = g_object_get_data ((GObject *) composer, "compowindow");
+	new_email_custom_header_window = g_object_get_data ((GObject *) composer, "compowindow");
 
 	if (new_email_custom_header_window) {
 		current_dialog = new_email_custom_header_window->epech_dialog;
@@ -520,7 +520,7 @@ static void action_email_custom_header_cb (GtkAction *action, EMsgComposer *comp
 			new_email_custom_header_window = g_new0 (EmailCustomHeaderWindow, 1);
 			new_email_custom_header_window->epech_window = window;
 			new_email_custom_header_window->epech_dialog = dialog;
-                        g_object_set_data_full ((GObject *) composer, "compowindow", new_email_custom_header_window, destroy_compo_data);
+			g_object_set_data_full ((GObject *) composer, "compowindow", new_email_custom_header_window, destroy_compo_data);
 		}
 	}
 
@@ -581,7 +581,7 @@ commit_changes (ConfigData *cd)
                 /* Check if the keyword is not empty */
 		if ((keyword) && (g_utf8_strlen (g_strstrip (keyword), -1) > 0)) {
 			if ((value) && (g_utf8_strlen (g_strstrip (value), -1) > 0)) {
-                                keyword = g_strconcat (keyword, "=", value, NULL);
+				keyword = g_strconcat (keyword, "=", value, NULL);
 			}
 			header_config_list = g_slist_append (header_config_list, g_strdup (keyword));
 		}
-- 
cgit