Use gtk_separator_new() instead gtk_[v|h]separator_new()

This commit is contained in:
Javier Jardón
2010-10-30 01:32:34 +02:00
committed by Tristan Van Berkom
parent 2615ebf37e
commit 821c3c6578
19 changed files with 55 additions and 48 deletions

View File

@ -151,7 +151,7 @@ main (int argc, char **argv)
gtk_widget_show_all (box1);
separator = gtk_hseparator_new ();
separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start (GTK_BOX (box1), separator, FALSE, TRUE, 0);
gtk_widget_show (separator);