Skip to content

Commit d6908cf

Browse files
committed
Merge branch 'pyscripter-master'
2 parents 39284db + 108d819 commit d6908cf

File tree

5 files changed

+483
-249
lines changed

5 files changed

+483
-249
lines changed

Demos/Demo06/Unit1.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ TForm1 = class(TForm)
4242
end;
4343

4444
PyPointRec = record
45-
ob_refcnt : NativeInt;
45+
ob_refcnt : NativeUInt;
4646
ob_type : PPyTypeObject;
4747
po_x : Integer;
4848
po_y : Integer;

Demos/Demo07/Unit1.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ TForm1 = class(TForm)
4848
end;
4949

5050
PyPointRec = record
51-
ob_refcnt : NativeInt;
51+
ob_refcnt : NativeUInt;
5252
ob_type : PPyTypeObject;
5353
po_x : Integer;
5454
po_y : Integer;

Demos/FPC/Demo06/Unit1.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ TForm1 = class(TForm)
4747
end;
4848

4949
PyPointRec = record
50-
ob_refcnt : NativeInt;
50+
ob_refcnt : NativeUInt;
5151
ob_type : PPyTypeObject;
5252
po_x : Integer;
5353
po_y : Integer;

0 commit comments

Comments
 (0)