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

@ -251,7 +251,7 @@ script_fu_interface (SFScript *script,
gtk_window_set_resizable (GTK_WINDOW (dialog), TRUE);
vbox = gtk_vbox_new (FALSE, 12);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
vbox, TRUE, TRUE, 0);
@ -561,7 +561,7 @@ script_fu_interface (SFScript *script,
g_object_unref (group);
/* the script progress bar */
vbox2 = gtk_vbox_new (FALSE, 6);
vbox2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
gtk_box_pack_end (GTK_BOX (vbox), vbox2, FALSE, FALSE, 0);
gtk_widget_show (vbox2);