]> Pileus Git - ~andy/gtk/blobdiff - demos/testgtk/main.c
Use gtk_box_new() instead gtk_[v|h]box_new()
[~andy/gtk] / demos / testgtk / main.c
index bf43ca34ea5e4faf815d26ea2031d12614ec9fce..f772a6f0e114498ca557b6aaee093a99188f253e 100644 (file)
@@ -350,7 +350,7 @@ main (int argc, char **argv)
   g_signal_connect (window, "destroy",
                     G_CALLBACK (gtk_main_quit), NULL);
 
-  hbox = gtk_hbox_new (FALSE, 0);
+  hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE, 0);
   gtk_container_add (GTK_CONTAINER (window), hbox);
 
   tree = create_tree ();