mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 01:36:16 +02:00
ListFilterEdit: Remove a test "if fFilteredListbox.SelCount > 0" which for some reason created an error.
git-svn-id: trunk@35516 -
This commit is contained in:
parent
332f2a2a55
commit
aa06f3d9c9
@ -187,10 +187,9 @@ var
|
||||
i: Integer;
|
||||
begin
|
||||
fSelectionList.Clear;
|
||||
if fFilteredListbox.SelCount > 0 then
|
||||
for i := 0 to fFilteredListbox.Count-1 do
|
||||
if fFilteredListbox.Selected[i] then
|
||||
fSelectionList.Add(fFilteredListbox.Items[i]);
|
||||
for i := 0 to fFilteredListbox.Count-1 do
|
||||
if fFilteredListbox.Selected[i] then
|
||||
fSelectionList.Add(fFilteredListbox.Items[i]);
|
||||
end;
|
||||
|
||||
procedure TListFilterEdit.RestoreSelection;
|
||||
|
Loading…
Reference in New Issue
Block a user