changeset 10591:9cb601a1fcfa

[gaim-migrate @ 11996] sourcefoge patch #1121145, from mccannwj "remove remaining gtk separators from dialogs" committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 12 Feb 2005 01:13:01 +0000
parents 896efbdc74e2
children d72fffd1b1ad
files src/gtkft.c src/gtksavedstatuses.c
diffstat 2 files changed, 1 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkft.c	Fri Feb 11 06:10:12 2005 +0000
+++ b/src/gtkft.c	Sat Feb 12 01:13:01 2005 +0000
@@ -539,7 +539,6 @@
 {
 	GtkWidget *table;
 	GtkWidget *label;
-	GtkWidget *sep;
 	int i;
 
 	struct
@@ -561,7 +560,7 @@
 	};
 
 	/* Setup the initial table */
-	dialog->table = table = gtk_table_new(10, 2, FALSE);
+	dialog->table = table = gtk_table_new(9, 2, FALSE);
 	gtk_table_set_row_spacings(GTK_TABLE(table), 6);
 	gtk_table_set_col_spacings(GTK_TABLE(table), 6);
 
@@ -594,11 +593,6 @@
 					 GTK_FILL, GTK_FILL, 0, 0);
 	gtk_widget_show(dialog->progress);
 
-	sep = gtk_hseparator_new();
-	gtk_table_attach(GTK_TABLE(table), sep, 0, 2, 9, 10,
-					 GTK_FILL, GTK_FILL, 0, 0);
-	gtk_widget_show(sep);
-
 	return table;
 }
 
--- a/src/gtksavedstatuses.c	Fri Feb 11 06:10:12 2005 +0000
+++ b/src/gtksavedstatuses.c	Sat Feb 12 01:13:01 2005 +0000
@@ -698,7 +698,6 @@
 	GtkWidget *frame;
 	GtkWidget *hbox;
 	GtkWidget *label;
-	GtkWidget *sep;
 	GtkWidget *sw;
 	GtkWidget *text;
 	GtkWidget *toolbar;
@@ -825,11 +824,6 @@
 	/* Populate list */
 	status_editor_populate_list(dialog);
 
-	/* Separator */
-	sep = gtk_hseparator_new();
-	gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
-	gtk_widget_show(sep);
-
 	/* Button box */
 	bbox = gtk_hbutton_box_new();
 	gtk_box_set_spacing(GTK_BOX(bbox), 6);