comparison src/gtkpounce.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 dc4475bf718f
children 896efbdc74e2
comparison
equal deleted inserted replaced
10534:975c2e66cd53 10535:f175ff63d571
348 GtkWidget *vbox1, *vbox2; 348 GtkWidget *vbox1, *vbox2;
349 GtkWidget *hbox; 349 GtkWidget *hbox;
350 GtkWidget *button; 350 GtkWidget *button;
351 GtkWidget *frame; 351 GtkWidget *frame;
352 GtkWidget *table; 352 GtkWidget *table;
353 GtkWidget *sep;
354 GtkSizeGroup *sg; 353 GtkSizeGroup *sg;
355 GPtrArray *sound_widgets; 354 GPtrArray *sound_widgets;
356 GPtrArray *exec_widgets; 355 GPtrArray *exec_widgets;
357 356
358 g_return_if_fail((cur_pounce != NULL) || (account != NULL) || 357 g_return_if_fail((cur_pounce != NULL) || (account != NULL) ||
615 /* Now the last part, where we have the Save checkbox */ 614 /* Now the last part, where we have the Save checkbox */
616 dialog->save_pounce = gtk_check_button_new_with_mnemonic( 615 dialog->save_pounce = gtk_check_button_new_with_mnemonic(
617 _("Sav_e this pounce after activation")); 616 _("Sav_e this pounce after activation"));
618 617
619 gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0); 618 gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0);
620
621 /* Separator... */
622 sep = gtk_hseparator_new();
623 gtk_box_pack_start(GTK_BOX(vbox1), sep, FALSE, FALSE, 0);
624 gtk_widget_show(sep);
625 619
626 /* Now the button box! */ 620 /* Now the button box! */
627 bbox = gtk_hbutton_box_new(); 621 bbox = gtk_hbutton_box_new();
628 gtk_box_set_spacing(GTK_BOX(bbox), 6); 622 gtk_box_set_spacing(GTK_BOX(bbox), 6);
629 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); 623 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);