X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvar-display.c;h=8f084e7f1d7e15e0e23e119284fd566019b35b8e;hb=cef98fb5402c1128dd9ee75d133e16911c6b7441;hp=db0020f4f426729160a6ab665e408b7da677239c;hpb=fe8dc2171009e90d2335f159d05f7e6660e24780;p=pspp diff --git a/src/ui/gui/var-display.c b/src/ui/gui/var-display.c index db0020f4f4..8f084e7f1d 100644 --- a/src/ui/gui/var-display.c +++ b/src/ui/gui/var-display.c @@ -1,3 +1,21 @@ +/* +PSPP - a program for statistical analysis. +Copyright (C) 2017 Free Software Foundation, Inc. + +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 +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + #include #include "var-display.h" @@ -17,24 +35,24 @@ static const gchar none[] = N_("None"); 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); - if ( mv_is_empty (miss)) + if (mv_is_empty (miss)) return xstrdup (gettext (none)); else { - if ( ! mv_has_range (miss)) + if (! mv_has_range (miss)) { GString *gstr = g_string_sized_new (10); const int n = mv_n_values (miss); gchar *mv[4] = {0,0,0,0}; gint i; - for (i = 0 ; i < n; ++i ) + for (i = 0 ; i < n; ++i) { mv[i] = value_to_text (*mv_get_value (miss, i), pv); - if ( i > 0 ) + if (i > 0) g_string_append (gstr, ", "); g_string_append (gstr, mv[i]); g_free (mv[i]); @@ -56,7 +74,7 @@ missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GE g_free (l); g_free (h); - if ( mv_has_value (miss)) + if (mv_has_value (miss)) { gchar *ss = NULL;