Implemented the paired samples t test dialog. Closes patch #6378
[pspp-builds.git] / src / ui / gui / frequencies-dialog.c
index 3f955bbcba18ab16ed11da5b93ea820f3680d8d2..d7ce37c3e021e3258336d2032263126479a9dfa1 100644 (file)
@@ -148,7 +148,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=");
 
@@ -348,6 +348,7 @@ frequencies_dialog (GObject *o, gpointer data)
                                 source,
                                 dest,
                                 insert_source_row_into_tree_view,
+                                NULL,
                                 NULL);