diff src/ui_misc.c @ 442:4b2d7f9af171

Big whitespaces cleanup: - drop whitespaces at end of lines - convert eight spaces to tab at start of lines - drop spurious spaces mixed with tabs - remove empty lines at end of files
author zas_
date Sun, 20 Apr 2008 13:04:57 +0000
parents de1c2cd06fce
children a73cc0fa14d0
line wrap: on
line diff
--- a/src/ui_misc.c	Sun Apr 20 10:05:27 2008 +0000
+++ b/src/ui_misc.c	Sun Apr 20 13:04:57 2008 +0000
@@ -1083,7 +1083,7 @@
 
 	return ds->box;
 }
-                                                                                                                        
+
 void date_selection_set(GtkWidget *widget, gint day, gint month, gint year)
 {
 	DateSelection *ds;
@@ -1108,7 +1108,7 @@
 	if (month) *month = gtk_spin_button_get_value(GTK_SPIN_BUTTON(ds->spin_m));
 	if (year) *year = gtk_spin_button_get_value(GTK_SPIN_BUTTON(ds->spin_y));
 }
-                                                                                                                        
+
 void date_selection_time_set(GtkWidget *widget, time_t t)
 {
 	struct tm *lt;
@@ -1506,7 +1506,7 @@
 
 	g_free(token);
 
-	return ret; 
+	return ret;
 }
 
 static void pref_list_set(const gchar *group, const gchar *key, const gchar *marker, const gchar *text)
@@ -1626,7 +1626,7 @@
 				 GCallback func, gpointer data)
 {
 	GtkWidget *button;
-	
+
 	if (color)
 		{
 		button = gtk_color_button_new_with_color(color);
@@ -1648,7 +1648,7 @@
 
 		hbox = gtk_hbox_new(TRUE, 0);
 		gtk_box_pack_start(GTK_BOX(parent_box), hbox, TRUE, TRUE, 0);
-		
+
 		gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0);
 		gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
 
@@ -1658,6 +1658,6 @@
 		{
 		gtk_widget_show(button);
 		}
-	
+
 	return button;
 }