diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-10-30 01:47:13 +0200 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-10-30 17:37:03 +0900 |
commit | cdf4b4bbd5bf6b4e7a82954bbecf467b6952bde5 (patch) | |
tree | 25295334616de4785d8693e9a36535bd6ae1f8dd /tests/testiconview.c | |
parent | 524e70414750ea26473e80e9421efa4bfd4401d5 (diff) | |
download | gtk+-cdf4b4bbd5bf6b4e7a82954bbecf467b6952bde5.tar.gz |
Use gtk_paned_new() instead gtk_[v|h]paned_new()
Diffstat (limited to 'tests/testiconview.c')
-rw-r--r-- | tests/testiconview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testiconview.c b/tests/testiconview.c index 8220c91113..6dd169b6a4 100644 --- a/tests/testiconview.c +++ b/tests/testiconview.c @@ -436,7 +436,7 @@ main (gint argc, gchar **argv) vbox = gtk_vbox_new (FALSE, 0); gtk_container_add (GTK_CONTAINER (window), vbox); - paned = gtk_hpaned_new (); + paned = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL); gtk_box_pack_start (GTK_BOX (vbox), paned, TRUE, TRUE, 0); icon_list = gtk_icon_view_new (); |