@@ -22,7 +22,7 @@ TPyDelphiPointF = class(TPyObject)
2222 function Set_X (AValue: PPyObject; AContext: Pointer): integer; cdecl;
2323 function Set_Y (AValue: PPyObject; AContext: Pointer): integer; cdecl;
2424 public
25- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
25+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
2626 function Compare (obj: PPyObject): Integer; override;
2727 function Repr : PPyObject; override;
2828 class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -41,7 +41,7 @@ TPyDelphiSizeF = class(TPyObject)
4141 function Set_Width (AValue: PPyObject; AContext: Pointer): integer; cdecl;
4242 function Set_Height (AValue: PPyObject; AContext: Pointer): integer; cdecl;
4343 public
44- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
44+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
4545 function Compare (obj: PPyObject): Integer; override;
4646 function Repr : PPyObject; override;
4747 class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -64,7 +64,7 @@ TPyDelphiRectF = class(TPyObject)
6464 function Set_Left (AValue: PPyObject; AContext: Pointer): integer; cdecl;
6565 function Set_Right (AValue: PPyObject; AContext: Pointer): integer; cdecl;
6666 public
67- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
67+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
6868 function Compare (obj: PPyObject): Integer; override;
6969 function Repr : PPyObject; override;
7070 class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -103,7 +103,7 @@ TPyDelphiPosition = class(TPyDelphiPersistent)
103103 function Set_Y (AValue: PPyObject; AContext: Pointer): integer; cdecl;
104104 function Set_Point (AValue: PPyObject; AContext: Pointer): integer; cdecl;
105105 public
106- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
106+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
107107 class function DelphiObjectClass : TClass; override;
108108 class procedure RegisterMethods (PythonType: TPythonType); override;
109109 class procedure RegisterGetSets (PythonType: TPythonType); override;
@@ -128,7 +128,7 @@ TPyDelphiBounds = class(TPyDelphiPersistent)
128128 function Get_Rect (Acontext: Pointer): PPyObject; cdecl;
129129 function Set_Rect (AValue: PPyObject; AContext: Pointer): integer; cdecl;
130130 public
131- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
131+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
132132 class function DelphiObjectClass : TClass; override;
133133 class procedure RegisterGetSets (PythonType: TPythonType); override;
134134 property DelphiObject: TBounds read GetDelphiObject write SetDelphiObject;
@@ -142,7 +142,7 @@ TPyDelphiControlSize = class(TPyDelphiPersistent)
142142 function Get_SizeF (Acontext: Pointer): PPyObject; cdecl;
143143 function Set_SizeF (AValue: PPyObject; AContext: Pointer): integer; cdecl;
144144 public
145- constructor CreateWith(APythonType: TPythonType; args, kwds : PPyObject); override;
145+ constructor CreateWith(APythonType: TPythonType; args: PPyObject); override;
146146 class function DelphiObjectClass : TClass; override;
147147 class procedure RegisterGetSets (PythonType: TPythonType); override;
148148 property DelphiObject: TControlSize read GetDelphiObject write SetDelphiObject;
@@ -184,7 +184,7 @@ function TPyDelphiPointF.Compare(obj: PPyObject): Integer;
184184 Result := 1 ;
185185end ;
186186
187- constructor TPyDelphiPointF.CreateWith(APythonType: TPythonType; args, kwds :
187+ constructor TPyDelphiPointF.CreateWith(APythonType: TPythonType; args:
188188 PPyObject);
189189var
190190 x, y : single;
@@ -424,7 +424,7 @@ function TPyDelphiFmxObject.Set_Parent(AValue: PPyObject;
424424end ;
425425
426426{ TPyDelphiPosition }
427- constructor TPyDelphiPosition.CreateWith(APythonType: TPythonType; args, kwds :
427+ constructor TPyDelphiPosition.CreateWith(APythonType: TPythonType; args:
428428 PPyObject);
429429var
430430 LPPosition: PPyObject;
@@ -544,7 +544,7 @@ function TPyDelphiSizeF.Compare(obj: PPyObject): Integer;
544544 Result := 1 ;
545545end ;
546546
547- constructor TPyDelphiSizeF.CreateWith(APythonType: TPythonType; args, kwds :
547+ constructor TPyDelphiSizeF.CreateWith(APythonType: TPythonType; args:
548548 PPyObject);
549549var
550550 LWidth, LHeight : single;
@@ -646,7 +646,7 @@ procedure TPyDelphiCustomPopupMenu.SetDelphiObject(
646646end ;
647647
648648{ TPyDelphiBounds }
649- constructor TPyDelphiBounds.CreateWith(APythonType: TPythonType; args, kwds :
649+ constructor TPyDelphiBounds.CreateWith(APythonType: TPythonType; args:
650650 PPyObject);
651651var
652652 LPBounds: PPyObject;
@@ -703,8 +703,8 @@ function TPyDelphiBounds.Set_Rect(AValue: PPyObject;
703703end ;
704704
705705{ TPyDelphiControlSize }
706- constructor TPyDelphiControlSize.CreateWith(APythonType: TPythonType; args,
707- kwds: PPyObject);
706+ constructor TPyDelphiControlSize.CreateWith(APythonType: TPythonType; args:
707+ PPyObject);
708708var
709709 LPControlSize: PPyObject;
710710 LSizeF: TSizeF;
@@ -775,7 +775,7 @@ function TPyDelphiRectF.Compare(obj: PPyObject): Integer;
775775 Result := 1 ;
776776end ;
777777
778- constructor TPyDelphiRectF.CreateWith(APythonType: TPythonType; args, kwds :
778+ constructor TPyDelphiRectF.CreateWith(APythonType: TPythonType; args:
779779 PPyObject);
780780var
781781 LLeft, LTop, LRight, LBottom : single;
0 commit comments