plug-ins: use gtk_box_new()

This commit is contained in:
Michael Natterer
2011-09-30 12:17:53 +02:00
parent cb242a484e
commit dcb4c6e34a
151 changed files with 497 additions and 475 deletions

View File

@ -129,7 +129,7 @@ create_settings_dialog(void)
frame = gimp_frame_new(_("Map File Format"));
gtk_widget_show(frame);
gtk_table_attach_defaults(GTK_TABLE(table), frame, 0, 2, 9, 10);
hbox = gtk_hbox_new(FALSE, 6);
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
gtk_container_add(GTK_CONTAINER(frame), hbox);
gtk_widget_show(hbox);