mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 19:19:18 +02:00
Dialogs: fix compliation with fpc < 3.2.2 after commit #70688d5a (2nd try)
This commit is contained in:
parent
76c9b140ac
commit
3a944f112d
@ -302,7 +302,7 @@ var
|
||||
i: Integer;
|
||||
begin
|
||||
Result := nil;
|
||||
Arr := Filter.Split('|',TstringSplitOptions.ExcludeLastEmpty);
|
||||
Arr := Filter.Split('|'{$if fpc_fullversion >= 30202}, TStringSplitOptions.ExcludeLastEmpty{$endif});
|
||||
SetLength(Result, Length(Arr) div 2);
|
||||
for i := Low(Arr) to High(Arr) do
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user