You've already forked lazarus-ccr
Industrial/LCDDisplay: Remove integer helper from ClearEditorGrid
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8319 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -355,11 +355,10 @@ end;
|
|||||||
|
|
||||||
procedure TLCDCharDefsEditor.ClearEditorGrid;
|
procedure TLCDCharDefsEditor.ClearEditorGrid;
|
||||||
var
|
var
|
||||||
i, j: integer;
|
i: integer;
|
||||||
begin
|
begin
|
||||||
for i := 0 to dgDotMatrix.ColCount - 1 do
|
for i := 0 to High(FTmpDotRows[i]) do
|
||||||
for j := 0 to dgDotMatrix.RowCount - 1 do
|
FTmpDotRows[i] := 0;
|
||||||
FTmpDotRows[j].ClearBit(i);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ Reads the size of the dot matrix from FLCDDisplay and use it to define the
|
{ Reads the size of the dot matrix from FLCDDisplay and use it to define the
|
||||||
|
Reference in New Issue
Block a user