Skip to content

Commit 98aa85d

Browse files
committed
1 parent 0b97a5a commit 98aa85d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/vcl/WrapVclGrids.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ function TPyDelphiStringGrid.SetCell(args: PPyObject): PPyObject;
717717
with GetPythonEngine do begin
718718
// adjust the transmitted self argument
719719
Adjust(@Self);
720-
if PyArg_ParseTuple( args, 'iiO:GetCell',@col, @row, @value ) <> 0 then
720+
if PyArg_ParseTuple( args, 'iiO:SetCell',@col, @row, @value ) <> 0 then
721721
begin
722722
DelphiObject.Cells[col, row]:= PyObjectAsString(value);
723723
result:=ReturnNone;

0 commit comments

Comments
 (0)