Skip to content

Commit f5b3ed5

Browse files
committed
Fix #317
1 parent 1b3304b commit f5b3ed5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/WrapDelphi.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2786,7 +2786,7 @@ function TPyDelphiMethodObject.Call(ob1, ob2: PPyObject): PPyObject;
27862786
Num: Int64;
27872787
begin
27882788
Result := False;
2789-
if (RttiParam.ParamType = nil) or (RttiParam.ParamType.Handle = nil) or (GetTypeData(RttiParam.ParamType.Handle)) = nil) then
2789+
if (RttiParam.ParamType = nil) or (RttiParam.ParamType.Handle = nil) or (GetTypeData(RttiParam.ParamType.Handle) = nil) then
27902790
Exit;
27912791
elType := GetTypeData(RttiParam.ParamType.Handle).elType;
27922792
if elType = nil then

0 commit comments

Comments
 (0)