Commit
47d59628a7d51a (psppire-var-sheet: Rename references to the icons
for align, measure and role icons) renamed some but not all uses of
ROLE_OUTPUT, breaking the build. This commit completes the rename.
According to Bastián Díaz, "target" is better than "output" because it
is "a broader concept for function".
break;
case 1:
- role = ROLE_OUTPUT;
+ role = ROLE_TARGET;
break;
case 2:
s = "0";
break;
- case ROLE_OUTPUT:
+ case ROLE_TARGET:
s = "1";
break;
{
case ROLE_NONE:
case ROLE_INPUT:
- case ROLE_OUTPUT:
+ case ROLE_TARGET:
case ROLE_BOTH:
case ROLE_PARTITION:
case ROLE_SPLIT:
case ROLE_INPUT:
return _("Input");
- case ROLE_OUTPUT:
+ case ROLE_TARGET:
return _("Output");
case ROLE_BOTH:
case ROLE_INPUT:
return "INPUT";
- case ROLE_OUTPUT:
+ case ROLE_TARGET:
return "TARGET";
case ROLE_BOTH:
enum var_role
{
ROLE_INPUT,
- ROLE_OUTPUT,
+ ROLE_TARGET,
ROLE_BOTH,
ROLE_NONE,
ROLE_PARTITION,
if ( lex_match_id (lexer, "INPUT"))
role = ROLE_INPUT;
else if ( lex_match_id (lexer, "TARGET"))
- role = ROLE_OUTPUT;
+ role = ROLE_TARGET;
else if ( lex_match_id (lexer, "BOTH"))
role = ROLE_BOTH;
else if ( lex_match_id (lexer, "NONE"))