We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20aded3 commit d1faf6bCopy full SHA for d1faf6b
source/main.pas
@@ -5269,7 +5269,7 @@ procedure TMainForm.actDataInsertExecute(Sender: TObject);
5269
if (Sender = actDataDuplicateRowWithoutKeys) or (Sender = actDataDuplicateRowWithKeys) then
5270
DupeNode := Grid.FocusedNode;
5271
RowNum := Results.InsertRow;
5272
- NewNode := Grid.InsertNode(Grid.FocusedNode, amInsertAfter, @RowNum);
+ NewNode := Grid.InsertNode(Grid.FocusedNode, amInsertAfter, PInt64(RowNum));
5273
SelectNode(Grid, NewNode);
5274
if Assigned(DupeNode) then begin
5275
// Copy values from source row, ensure we have whole cell data
0 commit comments