mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-24 12:30:17 +00:00
Adds 'false' and 'f' to the list of acceptable refusals.
This commit is contained in:
parent
61272cfe20
commit
1739d18433
@ -19,7 +19,7 @@ ListSelection *ListSelection::list_selection() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
BooleanSelection *ListSelection::boolean_selection() {
|
BooleanSelection *ListSelection::boolean_selection() {
|
||||||
return new BooleanSelection(value != "no" && value != "n");
|
return new BooleanSelection(value != "no" && value != "n" && value != "false" && value != "f");
|
||||||
}
|
}
|
||||||
|
|
||||||
BooleanSelection *BooleanSelection::boolean_selection() {
|
BooleanSelection *BooleanSelection::boolean_selection() {
|
||||||
|
Loading…
Reference in New Issue
Block a user