X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvariable-info-dialog.c;h=178a834c7a0d8357c642997c649f81f9612488b6;hp=a53d6a5cf0a09264189a98a525a79c48f70c80d0;hb=82217038368a953179398d9ecc7b80169a1b9ddc;hpb=dd5535725f86158e55b3fc263c17058005b0c0a5 diff --git a/src/ui/gui/variable-info-dialog.c b/src/ui/gui/variable-info-dialog.c index a53d6a5c..178a834c 100644 --- a/src/ui/gui/variable-info-dialog.c +++ b/src/ui/gui/variable-info-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2009 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -40,26 +40,14 @@ static const gchar none[] = N_("None"); -static gchar * -name_to_string (const struct variable *var, PsppireDict *dict) -{ - const char *name = var_get_name (var); - g_assert (name); - - return recode_string (UTF8, psppire_dict_encoding (dict), - name, -1); -} - - -static gchar * -label_to_string (const struct variable *var, PsppireDict *dict) +static const gchar * +label_to_string (const struct variable *var) { const char *label = var_get_label (var); - if (! label) return g_strdup (none); + if (NULL == label) return g_strdup (none); - return recode_string (UTF8, psppire_dict_encoding (dict), - label, -1); + return label; } @@ -70,7 +58,7 @@ populate_text (PsppireDictView *treeview, gpointer data) GString *gstring; PsppireDict *dict; - GtkTextBuffer *textbuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(data)); + GtkTextBuffer *textbuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (data)); const struct variable *var = psppire_dict_view_get_selected_variable (treeview); @@ -82,16 +70,11 @@ populate_text (PsppireDictView *treeview, gpointer data) NULL); gstring = g_string_sized_new (200); - text = name_to_string (var, NULL); - g_string_assign (gstring, text); - g_free (text); + g_string_assign (gstring, var_get_name (var)); g_string_append (gstring, "\n"); - text = label_to_string (var, NULL); - g_string_append_printf (gstring, _("Label: %s\n"), text); - g_free (text); - + g_string_append_printf (gstring, _("Label: %s\n"), label_to_string (var)); { const struct fmt_spec *fmt = var_get_print_format (var); char buffer[FMT_STRING_LEN_MAX + 1]; @@ -116,29 +99,27 @@ populate_text (PsppireDictView *treeview, gpointer data) /* Value Labels */ if ( var_has_value_labels (var)) { - struct val_labs_iterator *vli = 0; - struct val_lab *vl; - const struct val_labs *labs = var_get_value_labels (var); + const struct val_labs *vls = var_get_value_labels (var); + const struct val_lab **labels; + size_t n_labels; + size_t i; g_string_append (gstring, "\n"); g_string_append (gstring, _("Value Labels:\n")); - for (vl = val_labs_first_sorted (labs, &vli); - vl; - vl = val_labs_next (labs, &vli)) - { + labels = val_labs_sorted (vls); + n_labels = val_labs_count (vls); + for (i = 0; i < n_labels; i++) + { + const struct val_lab *vl = labels[i]; gchar *const vstr = - value_to_text (vl->value, *var_get_print_format (var)); - - - text = recode_string (UTF8, psppire_dict_encoding (dict), - vl->label, -1); + value_to_text (vl->value, dict, *var_get_print_format (var)); - g_string_append_printf (gstring, _("%s %s\n"), vstr, text); + g_string_append_printf (gstring, _("%s %s\n"), vstr, val_lab_get_label (vl)); - g_free (text); g_free (vstr); } + free (labels); } gtk_text_buffer_set_text (textbuffer, gstring->str, gstring->len);