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;
|
||||
var
|
||||
i, j: integer;
|
||||
i: integer;
|
||||
begin
|
||||
for i := 0 to dgDotMatrix.ColCount - 1 do
|
||||
for j := 0 to dgDotMatrix.RowCount - 1 do
|
||||
FTmpDotRows[j].ClearBit(i);
|
||||
for i := 0 to High(FTmpDotRows[i]) do
|
||||
FTmpDotRows[i] := 0;
|
||||
end;
|
||||
|
||||
{ Reads the size of the dot matrix from FLCDDisplay and use it to define the
|
||||
|
Reference in New Issue
Block a user