Use gtk_paned_new() instead gtk_[v|h]paned_new()

This commit is contained in:
Javier Jardón
2010-10-30 01:47:13 +02:00
committed by Tristan Van Berkom
parent 524e704147
commit cdf4b4bbd5
12 changed files with 29 additions and 29 deletions

View File

@ -116,7 +116,7 @@ int main( int argc,
/* create a vpaned widget and add it to our toplevel window */
vpaned = gtk_vpaned_new ();
vpaned = gtk_paned_new (GTK_ORIENTATION_VERTICAL);
gtk_container_add (GTK_CONTAINER (window), vpaned);
gtk_widget_show (vpaned);