mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 20:32:40 +02:00
TMaskList: Don't split masks on space (unless specified as separator in the constructor).
Issue #0024771. git-svn-id: trunk@42268 -
This commit is contained in:
parent
ec4ac9cdaa
commit
19f20c96f5
@ -484,7 +484,7 @@ var
|
||||
begin
|
||||
FMasks := TObjectList.Create(True);
|
||||
|
||||
S := TParseStringList.Create(AValue, ASeparator + ' ');
|
||||
S := TParseStringList.Create(AValue, ASeparator);
|
||||
try
|
||||
for I := 0 to S.Count - 1 do
|
||||
FMasks.Add(TMask.Create(S[I], CaseSensitive));
|
||||
|
Loading…
Reference in New Issue
Block a user