LCL Masks: fixed parsing mask list('*')

git-svn-id: trunk@11959 -
This commit is contained in:
tombo 2007-09-08 10:17:40 +00:00
parent 21f9b85b95
commit 64d792451f

View File

@ -347,7 +347,7 @@ begin
end;
end;
if Length(AText) > S then Add(Copy(AText, S, Length(AText) - S + 1));
if Length(AText) >= S then Add(Copy(AText, S, Length(AText) - S + 1));
end;
{ TMaskList }