Use gtk_box_new() instead gtk_[v|h]box_new()

This commit is contained in:
Javier Jardón
2010-10-30 05:00:32 +02:00
committed by Tristan Van Berkom
parent ae1d1fd048
commit c15ef6405c
135 changed files with 502 additions and 500 deletions

View File

@ -34,7 +34,7 @@ int main( int argc,
gtk_container_set_border_width (GTK_CONTAINER (window), 10);
vbox = gtk_vbox_new (FALSE, 5);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 5);
gtk_container_add (GTK_CONTAINER (window), vbox);
gtk_widget_show (vbox);