X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Ffrequencies-dialog.c;h=802a4664e710b8a2352d9938af4dba1930e2c6d6;hb=f3836c463d118e17f5049236ba016ca87d8d3eee;hp=3f955bbcba18ab16ed11da5b93ea820f3680d8d2;hpb=d4d89660d7a8f73ba8ae7ce09c50e3b6f3afb8e3;p=pspp diff --git a/src/ui/gui/frequencies-dialog.c b/src/ui/gui/frequencies-dialog.c index 3f955bbcba..802a4664e7 100644 --- a/src/ui/gui/frequencies-dialog.c +++ b/src/ui/gui/frequencies-dialog.c @@ -20,7 +20,6 @@ #include "frequencies-dialog.h" #include -#include #include #include @@ -148,7 +147,7 @@ generate_syntax (const struct frequencies_dialog *fd) GString *string = g_string_new ("FREQUENCIES"); g_string_append (string, "\n\t/VARIABLES="); - append_variable_names (string, fd->dict, GTK_TREE_VIEW (fd->stat_vars)); + append_variable_names (string, fd->dict, GTK_TREE_VIEW (fd->stat_vars), 0); g_string_append (string, "\n\t/FORMAT="); @@ -321,10 +320,9 @@ frequencies_dialog (GObject *o, gpointer data) GtkWidget *format_button = get_widget_assert (xml, "button1"); GtkWidget *stats_treeview = get_widget_assert (xml, "stats-treeview"); - GtkSheet *var_sheet = - GTK_SHEET (get_widget_assert (de->xml, "variable_sheet")); + PsppireVarStore *vs = NULL; - PsppireVarStore *vs = PSPPIRE_VAR_STORE (gtk_sheet_get_model (var_sheet)); + g_object_get (de->data_editor, "var-store", &vs, NULL); put_checkbox_items_in_treeview (GTK_TREE_VIEW(stats_treeview), B_FS_DEFAULT, @@ -333,8 +331,6 @@ frequencies_dialog (GObject *o, gpointer data) ); - - gtk_window_set_transient_for (GTK_WINDOW (dialog), de->parent.window); attach_dictionary_to_treeview (GTK_TREE_VIEW (source), @@ -348,6 +344,7 @@ frequencies_dialog (GObject *o, gpointer data) source, dest, insert_source_row_into_tree_view, + NULL, NULL);