X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvar-display.c;h=f779f4b1c15cca22d08b54e694506a6c373ccb99;hb=4f66e6c17635237ca970fa383a77a763b02f16b2;hp=1b9bf71c4764db71d4a3b88fef9ca0035035b68b;hpb=f550aee00a62fe1d8baf62d83cd7efef6cc2ee92;p=pspp diff --git a/src/ui/gui/var-display.c b/src/ui/gui/var-display.c index 1b9bf71c47..f779f4b1c1 100644 --- a/src/ui/gui/var-display.c +++ b/src/ui/gui/var-display.c @@ -17,19 +17,8 @@ static const gchar none[] = N_("None"); gchar * -measure_to_string (const struct variable *var, GError **err) +missing_values_to_string (const struct variable *pv, GError **err) { - const gint measure = var_get_measure (var); - - g_assert (measure < n_MEASURES); - return gettext (measures[measure]); -} - - -gchar * -missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GError **err) -{ - const struct fmt_spec *fmt = var_get_print_format (pv); gchar *s; const struct missing_values *miss = var_get_missing_values (pv); if ( mv_is_empty (miss)) @@ -44,7 +33,7 @@ missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GE gint i; for (i = 0 ; i < n; ++i ) { - mv[i] = value_to_text (*mv_get_value (miss, i), dict, *fmt); + mv[i] = value_to_text (*mv_get_value (miss, i), pv); if ( i > 0 ) g_string_append (gstr, ", "); g_string_append (gstr, mv[i]); @@ -60,8 +49,8 @@ missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GE union value low, high; mv_get_range (miss, &low.f, &high.f); - l = value_to_text (low, dict, *fmt); - h = value_to_text (high, dict,*fmt); + l = value_to_text (low, pv); + h = value_to_text (high, pv); g_string_printf (gstr, "%s - %s", l, h); g_free (l); @@ -69,9 +58,9 @@ missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GE if ( mv_has_value (miss)) { - gchar *ss = 0; + gchar *ss = NULL; - ss = value_to_text (*mv_get_value (miss, 0), dict, *fmt); + ss = value_to_text (*mv_get_value (miss, 0), pv); g_string_append (gstr, ", "); g_string_append (gstr, ss);