LCL: fixed comments in maskedit.pp, patch from Bart Broersma, bug #20129

git-svn-id: trunk@32159 -
This commit is contained in:
maxim 2011-09-02 20:28:49 +00:00
parent ac02acd3d9
commit 8a47d1cb94

View File

@ -77,8 +77,8 @@ const
cMask_LowerCase = '<'; // after this the chars is in lower case
cMask_Letter = 'l'; // only a letter but not necessary
cMask_LetterFixed = 'L'; // only a letter
cMask_AlphaNum = 'a'; // a char from space and #122 but not necessary
cMask_AlphaNumFixed = 'A'; // a char from space and #122
cMask_AlphaNum = 'a'; // an alphanumeric char (['A'..'Z','a..'z','0'..'9']) but not necessary
cMask_AlphaNumFixed = 'A'; // an alphanumeric char
cMask_AllChars = 'c'; // any char #32 - #255 but not necessary (needs fixing for UTF8 characters!!)
cMask_AllCharsFixed = 'C'; // any char #32 - #255 (needs fixing for UTF8 characters!!)
cMask_Number = '9'; // only a number but not necessary