X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fsplit-file-dialog.c;h=00f30c627080d53f96848d96c1c7ba4aca128ea7;hb=d75247c28e0dce9c21070e4ee14fdc6a2338fb77;hp=374e6af23ea27f27697ea41fe0c8154954d4ec97;hpb=f82952d22e200e1b35cea23545857a2cf2f02c66;p=pspp diff --git a/src/ui/gui/split-file-dialog.c b/src/ui/gui/split-file-dialog.c index 374e6af23e..00f30c6270 100644 --- a/src/ui/gui/split-file-dialog.c +++ b/src/ui/gui/split-file-dialog.c @@ -27,20 +27,18 @@ #include #include -#include #include "dialog-common.h" /* FIXME: These shouldn't be here */ -#include #include "psppire-var-store.h" struct split_file_dialog { /* The XML that created the dialog */ - GladeXML *xml; + GtkBuilder *xml; /* The dictionary to which this dialog pertains */ PsppireDict *dict; @@ -110,7 +108,7 @@ static void on_off_toggled (GtkToggleButton *togglebutton, gpointer user_data) { - GladeXML *xml = user_data; + GtkBuilder *xml = user_data; GtkWidget *dest = get_widget_assert (xml, "split-file-grouping-vars"); GtkWidget *selector = get_widget_assert (xml, "split-file-selector"); GtkWidget *source = get_widget_assert (xml, "split-file-dict-treeview"); @@ -178,7 +176,7 @@ split_file_dialog (GObject *o, gpointer data) GtkWidget *selector ; GtkWidget *on_off ; - sfd.xml = XML_NEW ("psppire.glade"); + sfd.xml = builder_new ("psppire.ui"); dialog = get_widget_assert (sfd.xml, "split-file-dialog"); source = get_widget_assert (sfd.xml, "split-file-dict-treeview");