changeset 10535:f175ff63d571

[gaim-migrate @ 11887] patch from mccannwj; removes horizontal seperators from dialogs committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 22 Jan 2005 04:43:15 +0000
parents 975c2e66cd53
children c047cf7e18ba
files src/gtkaccount.c src/gtkft.c src/gtkpounce.c src/gtkprivacy.c src/gtksavedstatuses.c
diffstat 5 files changed, 0 insertions(+), 36 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkaccount.c	Thu Jan 20 20:58:25 2005 +0000
+++ b/src/gtkaccount.c	Sat Jan 22 04:43:15 2005 +0000
@@ -1557,7 +1557,6 @@
 	GtkWidget *bbox;
 	GtkWidget *dbox;
 	GtkWidget *disclosure;
-	GtkWidget *sep;
 	GtkWidget *button;
 
 	if (accounts_window != NULL && account != NULL &&
@@ -1641,11 +1640,6 @@
 	add_protocol_options(dialog, dbox);
 	add_proxy_options(dialog, dbox);
 
-	/* Separator... */
-	sep = gtk_hseparator_new();
-	gtk_box_pack_start(GTK_BOX(main_vbox), sep, FALSE, FALSE, 0);
-	gtk_widget_show(sep);
-
 	/* Setup the button box */
 	bbox = gtk_hbutton_box_new();
 	gtk_box_set_spacing(GTK_BOX(bbox), 6);
@@ -2228,7 +2222,6 @@
 	GtkWidget *vbox;
 	GtkWidget *bbox;
 	GtkWidget *sw;
-	GtkWidget *sep;
 	GtkWidget *button;
 	int width, height;
 
@@ -2266,11 +2259,6 @@
 	gtk_box_pack_start(GTK_BOX(vbox), sw, TRUE, TRUE, 0);
 	gtk_widget_show(sw);
 
-	/* 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);
--- a/src/gtkft.c	Thu Jan 20 20:58:25 2005 +0000
+++ b/src/gtkft.c	Sat Jan 22 04:43:15 2005 +0000
@@ -610,7 +610,6 @@
 	GtkWidget *vbox1, *vbox2;
 	GtkWidget *bbox;
 	GtkWidget *sw;
-	GtkWidget *sep;
 	GtkWidget *button;
 	GtkWidget *disclosure;
 	GtkWidget *table;
@@ -681,11 +680,6 @@
 					 G_CALLBACK(toggle_details_cb), dialog);
 #endif
 
-	/* Separator */
-	sep = gtk_hseparator_new();
-	gtk_box_pack_start(GTK_BOX(vbox2), sep, FALSE, FALSE, 0);
-	gtk_widget_show(sep);
-
 	/* The table of information. */
 	table = make_info_table(dialog);
 	gtk_box_pack_start(GTK_BOX(vbox2), table, TRUE, TRUE, 0);
--- a/src/gtkpounce.c	Thu Jan 20 20:58:25 2005 +0000
+++ b/src/gtkpounce.c	Sat Jan 22 04:43:15 2005 +0000
@@ -350,7 +350,6 @@
 	GtkWidget *button;
 	GtkWidget *frame;
 	GtkWidget *table;
-	GtkWidget *sep;
 	GtkSizeGroup *sg;
 	GPtrArray *sound_widgets;
 	GPtrArray *exec_widgets;
@@ -618,11 +617,6 @@
 
 	gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0);
 
-	/* Separator... */
-	sep = gtk_hseparator_new();
-	gtk_box_pack_start(GTK_BOX(vbox1), sep, FALSE, FALSE, 0);
-	gtk_widget_show(sep);
-
 	/* Now the button box! */
 	bbox = gtk_hbutton_box_new();
 	gtk_box_set_spacing(GTK_BOX(bbox), 6);
--- a/src/gtkprivacy.c	Thu Jan 20 20:58:25 2005 +0000
+++ b/src/gtkprivacy.c	Sat Jan 22 04:43:15 2005 +0000
@@ -377,7 +377,6 @@
 	GtkWidget *dropdown;
 	GtkWidget *label;
 	GtkWidget *menu;
-	GtkWidget *sep;
 	int selected = 0;
 	int i;
 
@@ -486,11 +485,6 @@
 	g_signal_connect(G_OBJECT(button), "clicked",
 					 G_CALLBACK(clear_cb), dialog);
 
-	/* Separator */
-	sep = gtk_hseparator_new();
-	gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
-	gtk_widget_show(sep);
-
 	/* Another button box. */
 	bbox = gtk_hbutton_box_new();
 	gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
--- a/src/gtksavedstatuses.c	Thu Jan 20 20:58:25 2005 +0000
+++ b/src/gtksavedstatuses.c	Sat Jan 22 04:43:15 2005 +0000
@@ -379,7 +379,6 @@
 	GtkWidget *bbox;
 	GtkWidget *button;
 	GtkWidget *list;
-	GtkWidget *sep;
 	GtkWidget *vbox;
 	GtkWidget *win;
 	int width, height;
@@ -414,11 +413,6 @@
 	list = create_saved_status_list(dialog);
 	gtk_box_pack_start(GTK_BOX(vbox), list, TRUE, TRUE, 0);
 
-	/* 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);