diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-10-30 01:21:15 +0200 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-10-30 17:37:02 +0900 |
commit | 2615ebf37e552ad863a5b4c00c1d9bc96a75a557 (patch) | |
tree | 3c1761c8f546a1dfc41d4a9f824f41f3f58eef76 /tests/testfilechooser.c | |
parent | 34627a6371978157a93100e88d86e267e71ce29a (diff) | |
download | gtk+-2615ebf37e552ad863a5b4c00c1d9bc96a75a557.tar.gz |
Use gtk_button_box_new() instead gtk_[v|h]_button_box_new()
Diffstat (limited to 'tests/testfilechooser.c')
-rw-r--r-- | tests/testfilechooser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testfilechooser.c b/tests/testfilechooser.c index 61cd591704..4e6da60f44 100644 --- a/tests/testfilechooser.c +++ b/tests/testfilechooser.c @@ -644,7 +644,7 @@ main (int argc, char **argv) control_window = gtk_window_new (GTK_WINDOW_TOPLEVEL); - vbbox = gtk_vbutton_box_new (); + vbbox = gtk_button_box_new (GTK_ORIENTATION_VERTICAL); gtk_container_add (GTK_CONTAINER (control_window), vbbox); button = gtk_button_new_with_mnemonic ("_Select all"); |