g_string_append_printf (gstring, _("Type: %s\n"), buffer);
}
- text = missing_values_to_string (dict, var, NULL);
+ text = missing_values_to_string (var, NULL);
g_string_append_printf (gstring, _("Missing Values: %s\n"),
text);
g_free (text);
case VS_MISSING:
{
- char *text = missing_values_to_string (var_sheet->dict, var, NULL);
+ char *text = missing_values_to_string (var, NULL);
g_object_set (cell,
"text", text,
"editable", FALSE,
gchar *
-missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GError **err)
+missing_values_to_string (const struct variable *pv, GError **err)
{
gchar *s;
const struct missing_values *miss = var_get_missing_values (pv);
#define n_ALIGNMENTS 3
-gchar *missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GError **err);
+gchar *missing_values_to_string (const struct variable *pv, GError **err);
#endif