diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-10-30 05:00:32 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-10-30 05:22:58 +0200 |
commit | a9894d4cf48e04dcb89043b425be07870ad7c496 (patch) | |
tree | e375b4a784feea7eb7815ecb2c69443e8eaef55a /tests/testtooltips.c | |
parent | b2207f6730137f5167b39d6c686a905ba2f532ab (diff) | |
download | gtk+-a9894d4cf48e04dcb89043b425be07870ad7c496.tar.gz |
Use gtk_box_new() instead gtk_[v|h]box_new()
Diffstat (limited to 'tests/testtooltips.c')
-rw-r--r-- | tests/testtooltips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testtooltips.c b/tests/testtooltips.c index 4c17846797..5ec25abfcd 100644 --- a/tests/testtooltips.c +++ b/tests/testtooltips.c @@ -275,7 +275,7 @@ main (int argc, char *argv[]) g_signal_connect (window, "delete_event", G_CALLBACK (gtk_main_quit), NULL); - box = gtk_vbox_new (FALSE, 3); + box = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 3); gtk_container_add (GTK_CONTAINER (window), box); /* A check button using the tooltip-markup property */ |