mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 22:49:30 +02:00
LCL Masks: fixed parsing mask list('*')
git-svn-id: trunk@11959 -
This commit is contained in:
parent
21f9b85b95
commit
64d792451f
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user