mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 19:19:19 +02:00
Converter: fix the default checked value for missing units checkboxes.
git-svn-id: trunk@42464 -
This commit is contained in:
parent
f770004bfc
commit
f0e3321128
@ -92,11 +92,11 @@ var
|
|||||||
|
|
||||||
procedure AddUnitsToListBox(AMissingUnits: TStrings);
|
procedure AddUnitsToListBox(AMissingUnits: TStrings);
|
||||||
var
|
var
|
||||||
i: Integer;
|
i, Ind: Integer;
|
||||||
begin // Add missing units to CheckListBox.
|
begin // Add missing units to CheckListBox.
|
||||||
for i:=0 to AMissingUnits.Count-1 do begin
|
for i:=0 to AMissingUnits.Count-1 do begin
|
||||||
UNFDialog.MissingUnitsCheckListBox.Items.Append(AMissingUnits[i]);
|
Ind:=UNFDialog.MissingUnitsCheckListBox.Items.Add(AMissingUnits[i]);
|
||||||
UNFDialog.MissingUnitsCheckListBox.Checked[i]:=true;
|
UNFDialog.MissingUnitsCheckListBox.Checked[Ind]:=true;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user