Implemented the paired samples t test dialog. Closes patch #6378
[pspp-builds.git] / src / ui / gui / sort-cases-dialog.c
index 0eb0eaa678119166e44d8d5ff0d6c5f52c92bf9d..a722063bca70beb42f7ca4a4a990926fa369b4b1 100644 (file)
@@ -51,7 +51,7 @@ generate_syntax (const struct sort_cases_dialog *scd)
   gchar *text;
   GString *string = g_string_new ("SORT CASES BY ");
   gint n_vars = append_variable_names (string,
-                                      scd->dict, GTK_TREE_VIEW (scd->tv));
+                                      scd->dict, GTK_TREE_VIEW (scd->tv), 0);
 
   if ( n_vars == 0 )
     g_string_assign (string, "");
@@ -107,6 +107,7 @@ sort_cases_dialog (GObject *o, gpointer data)
                                 source,
                                 dest,
                                 insert_source_row_into_tree_view,
+                                NULL,
                                 NULL);
 
   g_signal_connect (dialog, "refresh", G_CALLBACK (refresh),  dest);