Fixup for gnc-gui-query.c, invalid cast

Specified the wrong widget for the container add function
This commit is contained in:
Robert Fewell 2017-07-02 10:14:39 +01:00
parent 95693a9172
commit 2c949fdf79

View File

@ -313,7 +313,7 @@ gnc_choose_radio_option_dialog(GtkWidget *parent,
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 3);
gtk_box_set_homogeneous (GTK_BOX (vbox), TRUE);
gtk_container_set_border_width(GTK_CONTAINER(vbox), 6);
gtk_container_add(GTK_BOX(main_vbox), vbox);
gtk_container_add(GTK_CONTAINER(main_vbox), vbox);
gtk_widget_show(vbox);
for (node = radio_list, i = 0; node; node = node->next, i++)