X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvariable.h;h=e960e09234406eaabe402f2683f5b5ee3974bd76;hb=73ce37552fb2846a5a5c23d401f21b4951888029;hp=3210a78f9a8456e483f7684208622e2d6339b640;hpb=1076f8e88e2eee1bc780edd9d79d696a38af936d;p=pspp diff --git a/src/data/variable.h b/src/data/variable.h index 3210a78f9a..e960e09234 100644 --- a/src/data/variable.h +++ b/src/data/variable.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2009, 2010, 2011, 2012, 2013, 2014 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 @@ -94,10 +94,6 @@ struct string; void var_append_value_name (const struct variable *, const union value *, struct string *); -const char * -var_get_value_name (const struct variable *v, const union value *value); - - bool var_has_value_labels (const struct variable *); const struct val_labs *var_get_value_labels (const struct variable *); void var_set_value_labels (struct variable *, const struct val_labs *); @@ -120,7 +116,7 @@ struct fmt_spec var_default_formats (int width); /* Variable labels. */ const char *var_to_string (const struct variable *); const char *var_get_label (const struct variable *); -bool var_set_label (struct variable *, const char *label, bool issue_warning); +void var_set_label (struct variable *, const char *label); void var_clear_label (struct variable *); bool var_has_label (const struct variable *); @@ -146,7 +142,7 @@ enum measure var_default_measure (enum val_type); enum var_role { ROLE_INPUT, - ROLE_OUTPUT, + ROLE_TARGET, ROLE_BOTH, ROLE_NONE, ROLE_PARTITION,