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

@ -41,7 +41,7 @@ int main( int argc,
g_signal_connect (window, "delete-event",
G_CALLBACK (exit), NULL);
vbox = gtk_vbox_new (FALSE, 1);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 1);
gtk_container_add (GTK_CONTAINER (window), vbox);
gtk_widget_show (vbox);