X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvariable-info-dialog.c;h=d5b41a98686cb13172f22c1e1e69f2ccded41617;hb=6dffb017e700eda7cd5111509042dc8964fff29f;hp=3692a0d24834b5bdb94bb0d8311d9e093fd38130;hpb=d6028c82867eb92ccd1a3a7f1473316cbe462271;p=pspp diff --git a/src/ui/gui/variable-info-dialog.c b/src/ui/gui/variable-info-dialog.c index 3692a0d248..d5b41a9868 100644 --- a/src/ui/gui/variable-info-dialog.c +++ b/src/ui/gui/variable-info-dialog.c @@ -90,7 +90,7 @@ populate_text (PsppireDictView *treeview, gpointer data) g_free (text); g_string_append_printf (gstring, _("Measurement Level: %s\n"), - measure_to_string (var, NULL)); + measure_to_string (var_get_measure (var))); /* Value Labels */ @@ -109,8 +109,7 @@ populate_text (PsppireDictView *treeview, gpointer data) for (i = 0; i < n_labels; i++) { const struct val_lab *vl = labels[i]; - gchar *const vstr = - value_to_text (vl->value, dict, *var_get_print_format (var)); + gchar *const vstr = value_to_text (vl->value, var); g_string_append_printf (gstring, _("%s %s\n"), vstr, val_lab_get_escaped_label (vl));