comparison src/gtkft.c @ 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 75f052c26f16
children 9cb601a1fcfa
comparison
equal deleted inserted replaced
10534:975c2e66cd53 10535:f175ff63d571
608 GaimGtkXferDialog *dialog; 608 GaimGtkXferDialog *dialog;
609 GtkWidget *window; 609 GtkWidget *window;
610 GtkWidget *vbox1, *vbox2; 610 GtkWidget *vbox1, *vbox2;
611 GtkWidget *bbox; 611 GtkWidget *bbox;
612 GtkWidget *sw; 612 GtkWidget *sw;
613 GtkWidget *sep;
614 GtkWidget *button; 613 GtkWidget *button;
615 GtkWidget *disclosure; 614 GtkWidget *disclosure;
616 GtkWidget *table; 615 GtkWidget *table;
617 GtkWidget *checkbox; 616 GtkWidget *checkbox;
618 617
678 677
679 #if 0 678 #if 0
680 g_signal_connect(G_OBJECT(disclosure), "toggled", 679 g_signal_connect(G_OBJECT(disclosure), "toggled",
681 G_CALLBACK(toggle_details_cb), dialog); 680 G_CALLBACK(toggle_details_cb), dialog);
682 #endif 681 #endif
683
684 /* Separator */
685 sep = gtk_hseparator_new();
686 gtk_box_pack_start(GTK_BOX(vbox2), sep, FALSE, FALSE, 0);
687 gtk_widget_show(sep);
688 682
689 /* The table of information. */ 683 /* The table of information. */
690 table = make_info_table(dialog); 684 table = make_info_table(dialog);
691 gtk_box_pack_start(GTK_BOX(vbox2), table, TRUE, TRUE, 0); 685 gtk_box_pack_start(GTK_BOX(vbox2), table, TRUE, TRUE, 0);
692 686