Removed my authorship lines.
[pspp] / src / language / stats / oneway.q
index ea4ed328c6ab8e3d5c60297e1867332743d55802..ed0add5835e62691ab1009b286b864f2c90d51f9 100644 (file)
@@ -1,7 +1,6 @@
 /* PSPP - One way ANOVA. -*-c-*-
 
 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
-Author: John Darrington 2004
 
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License as
@@ -435,7 +434,8 @@ show_descriptives(void)
          gs = gs_array[count];
 
          tab_text (t, 1, row + count, 
-                   TAB_LEFT | TAT_TITLE ,value_to_string(&gs->id,indep_var));
+                   TAB_LEFT | TAT_TITLE, var_get_value_name(indep_var,
+                                                             &gs->id));
 
          /* Now fill in the numbers ... */
 
@@ -621,7 +621,7 @@ show_contrast_coeffs (short *bad_contrast)
       group_value = group_values[count];
 
       tab_text (t, count + 2, 1, TAB_CENTER | TAT_TITLE, 
-               value_to_string(group_value, indep_var));
+               var_get_value_name (indep_var, group_value));
 
       for (i = 0 ; i < cmd.sbc_contrast ; ++i ) 
        {
@@ -917,7 +917,7 @@ run_oneway(const struct ccase *first, const struct casefile *cf,
       if ( casefilter_variable_missing (filter, &c, indep_var))
        continue;
 
-      indep_val = case_data (&c, indep_var->fv);
+      indep_val = case_data (&c, indep_var);
          
       hsh_insert ( global_group_hash, (void *) indep_val );
 
@@ -925,7 +925,7 @@ run_oneway(const struct ccase *first, const struct casefile *cf,
        {
          const struct variable *v = vars[i];
 
-         const union value *val = case_data (&c, v->fv);
+         const union value *val = case_data (&c, v);
 
           struct group_proc *gp = group_proc_get (vars[i]);
          struct hsh_table *group_hash = gp->group_hash;