From c18fba090ad19a69dcc52eb9a53fb3566d3f0645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Van=20Canneyt?= Date: Wed, 27 Jul 2022 08:41:13 +0200 Subject: [PATCH] * Fix compilation --- packages/webwidget/htmlwidgets.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/webwidget/htmlwidgets.pp b/packages/webwidget/htmlwidgets.pp index fc9df8c..c35b800 100644 --- a/packages/webwidget/htmlwidgets.pp +++ b/packages/webwidget/htmlwidgets.pp @@ -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