(svn r17920) -Codechange: add a 'filter' for numbers+spaces and use it for the NewGRF parameter list

This commit is contained in:
rubidium
2009-10-31 14:06:16 +00:00
parent 8e6f96e322
commit c3525c3c5c
3 changed files with 6 additions and 4 deletions

View File

@@ -18,6 +18,7 @@
enum CharSetFilter {
CS_ALPHANUMERAL, ///< Both numeric and alphabetic and spaces and stuff
CS_NUMERAL, ///< Only numeric ones
CS_NUMERAL_SPACE, ///< Only numbers and spaces
CS_ALPHA, ///< Only alphabetic values
};