* Fix compilation

This commit is contained in:
Michaël Van Canneyt 2022-07-27 08:41:13 +02:00
parent b28608d708
commit c18fba090a

View File

@ -1522,12 +1522,12 @@ begin
end;
if Assigned(cl) or (RowChecks[K] in TableOptions) then
begin
C.dataset['row']:=ACell.Row;
C.dataset['row']:=IntToStr(ACell.Row);
C.Dataset['kind']:=RowKindNames[K];
end;
if Assigned(cl) or (ColChecks[K] in TableOptions) then
begin
C.dataset['col']:=ACell.Col;
C.dataset['col']:=IntToStr(ACell.Col);
C.Dataset['kind']:=RowKindNames[K];
end;
if Assigned(M) then
@ -1605,7 +1605,7 @@ begin
end;
if Assigned(CL) or (TableRowChecks[Akind] in TableOptions) then
begin
RowEl.dataset['row']:=Enum.CurrentRow;
RowEl.dataset['row']:=IntToStr(Enum.CurrentRow);
RowEl.dataset['kind']:=RowKindNames[aKind];
end;
if Assigned(M) then