mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-28 12:02:48 +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;
|
||||||
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;
|
end;
|
||||||
|
|
||||||
{ TMaskList }
|
{ TMaskList }
|
||||||
|
Loading…
Reference in New Issue
Block a user