@@ -22,7 +22,7 @@ TPyDelphiPointF = class(TPyObject)
22
22
function Set_X (AValue: PPyObject; AContext: Pointer): integer; cdecl;
23
23
function Set_Y (AValue: PPyObject; AContext: Pointer): integer; cdecl;
24
24
public
25
- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
25
+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
26
26
function Compare (obj: PPyObject): Integer; override;
27
27
function Repr : PPyObject; override;
28
28
class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -41,7 +41,7 @@ TPyDelphiSizeF = class(TPyObject)
41
41
function Set_Width (AValue: PPyObject; AContext: Pointer): integer; cdecl;
42
42
function Set_Height (AValue: PPyObject; AContext: Pointer): integer; cdecl;
43
43
public
44
- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
44
+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
45
45
function Compare (obj: PPyObject): Integer; override;
46
46
function Repr : PPyObject; override;
47
47
class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -64,7 +64,7 @@ TPyDelphiRectF = class(TPyObject)
64
64
function Set_Left (AValue: PPyObject; AContext: Pointer): integer; cdecl;
65
65
function Set_Right (AValue: PPyObject; AContext: Pointer): integer; cdecl;
66
66
public
67
- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
67
+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
68
68
function Compare (obj: PPyObject): Integer; override;
69
69
function Repr : PPyObject; override;
70
70
class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -103,7 +103,7 @@ TPyDelphiPosition = class(TPyDelphiPersistent)
103
103
function Set_Y (AValue: PPyObject; AContext: Pointer): integer; cdecl;
104
104
function Set_Point (AValue: PPyObject; AContext: Pointer): integer; cdecl;
105
105
public
106
- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
106
+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
107
107
class function DelphiObjectClass : TClass; override;
108
108
class procedure RegisterMethods (PythonType: TPythonType); override;
109
109
class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -128,7 +128,7 @@ TPyDelphiBounds = class(TPyDelphiPersistent)
128
128
function Get_Rect (Acontext: Pointer): PPyObject; cdecl;
129
129
function Set_Rect (AValue: PPyObject; AContext: Pointer): integer; cdecl;
130
130
public
131
- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
131
+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
132
132
class function DelphiObjectClass : TClass; override;
133
133
class procedure RegisterGetSets (PythonType: TPythonType); override;
134
134
property DelphiObject: TBounds read GetDelphiObject write SetDelphiObject;
@@ -142,7 +142,7 @@ TPyDelphiControlSize = class(TPyDelphiPersistent)
142
142
function Get_SizeF (Acontext: Pointer): PPyObject; cdecl;
143
143
function Set_SizeF (AValue: PPyObject; AContext: Pointer): integer; cdecl;
144
144
public
145
- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
145
+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
146
146
class function DelphiObjectClass : TClass; override;
147
147
class procedure RegisterGetSets (PythonType: TPythonType); override;
148
148
property DelphiObject: TControlSize read GetDelphiObject write SetDelphiObject;
@@ -184,7 +184,7 @@ function TPyDelphiPointF.Compare(obj: PPyObject): Integer;
184
184
Result := 1 ;
185
185
end ;
186
186
187
- constructor TPyDelphiPointF.CreateWith(APythonType: TPythonType; args, kwds :
187
+ constructor TPyDelphiPointF.CreateWith(APythonType: TPythonType; args:
188
188
PPyObject);
189
189
var
190
190
x, y : single;
@@ -424,7 +424,7 @@ function TPyDelphiFmxObject.Set_Parent(AValue: PPyObject;
424
424
end ;
425
425
426
426
{ TPyDelphiPosition }
427
- constructor TPyDelphiPosition.CreateWith(APythonType: TPythonType; args, kwds :
427
+ constructor TPyDelphiPosition.CreateWith(APythonType: TPythonType; args:
428
428
PPyObject);
429
429
var
430
430
LPPosition: PPyObject;
@@ -544,7 +544,7 @@ function TPyDelphiSizeF.Compare(obj: PPyObject): Integer;
544
544
Result := 1 ;
545
545
end ;
546
546
547
- constructor TPyDelphiSizeF.CreateWith(APythonType: TPythonType; args, kwds :
547
+ constructor TPyDelphiSizeF.CreateWith(APythonType: TPythonType; args:
548
548
PPyObject);
549
549
var
550
550
LWidth, LHeight : single;
@@ -646,7 +646,7 @@ procedure TPyDelphiCustomPopupMenu.SetDelphiObject(
646
646
end ;
647
647
648
648
{ TPyDelphiBounds }
649
- constructor TPyDelphiBounds.CreateWith(APythonType: TPythonType; args, kwds :
649
+ constructor TPyDelphiBounds.CreateWith(APythonType: TPythonType; args:
650
650
PPyObject);
651
651
var
652
652
LPBounds: PPyObject;
@@ -703,8 +703,8 @@ function TPyDelphiBounds.Set_Rect(AValue: PPyObject;
703
703
end ;
704
704
705
705
{ TPyDelphiControlSize }
706
- constructor TPyDelphiControlSize.CreateWith(APythonType: TPythonType; args,
707
- kwds: PPyObject);
706
+ constructor TPyDelphiControlSize.CreateWith(APythonType: TPythonType; args:
707
+ PPyObject);
708
708
var
709
709
LPControlSize: PPyObject;
710
710
LSizeF: TSizeF;
@@ -775,7 +775,7 @@ function TPyDelphiRectF.Compare(obj: PPyObject): Integer;
775
775
Result := 1 ;
776
776
end ;
777
777
778
- constructor TPyDelphiRectF.CreateWith(APythonType: TPythonType; args, kwds :
778
+ constructor TPyDelphiRectF.CreateWith(APythonType: TPythonType; args:
779
779
PPyObject);
780
780
var
781
781
LLeft, LTop, LRight, LBottom : single;
0 commit comments