X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=tests%2Ftestbbox.c;h=1edade59226964f9653b8f9de5ab78650c43bae4;hb=HEAD;hp=404836e8653ad7e68353d5b1fb86bd0addc36422;hpb=2615ebf37e552ad863a5b4c00c1d9bc96a75a557;p=~andy%2Fgtk diff --git a/tests/testbbox.c b/tests/testbbox.c index 404836e86..1edade592 100644 --- a/tests/testbbox.c +++ b/tests/testbbox.c @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - * 02110-1301 USA + * License along with this library. If not, see . * */ @@ -132,7 +130,7 @@ main (int argc, window = gtk_window_new (GTK_WINDOW_TOPLEVEL); g_signal_connect (G_OBJECT (window), "delete-event", G_CALLBACK (gtk_main_quit), NULL); - vbox = gtk_vbox_new (FALSE, 0); + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); gtk_container_add (GTK_CONTAINER (window), vbox); /* GtkHButtonBox */ @@ -153,7 +151,7 @@ main (int argc, /* Options */ - hbox = gtk_hbox_new (FALSE, 0); + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); combo_types = gtk_combo_box_text_new ();