@@ -391,7 +391,6 @@ function TPyDelphiPersistent.GetNamePath_Wrapper(
391
391
class procedure TPyDelphiPersistent.RegisterMethods (
392
392
PythonType: TPythonType);
393
393
begin
394
- inherited ;
395
394
PythonType.AddMethod(' Assign' , @TPyDelphiPersistent.Assign_Wrapper,
396
395
' TPersistent.Assign(persistent)' #10 +
397
396
' Assigns to this object the values of another TPersistent object' );
@@ -584,7 +583,6 @@ function TPyDelphiCollection.Insert_Wrapper(args: PPyObject): PPyObject;
584
583
585
584
class procedure TPyDelphiCollection.RegisterGetSets (PythonType: TPythonType);
586
585
begin
587
- inherited ;
588
586
with PythonType do
589
587
begin
590
588
AddGetSet(' Count' , @TPyDelphiCollection.Get_Count, nil ,
@@ -599,7 +597,6 @@ class procedure TPyDelphiCollection.RegisterGetSets(PythonType: TPythonType);
599
597
class procedure TPyDelphiCollection.RegisterMethods (
600
598
PythonType: TPythonType);
601
599
begin
602
- inherited ;
603
600
PythonType.AddMethod(' Insert' , @TPyDelphiCollection.Insert_Wrapper,
604
601
' TCollection.Insert(Index)' #10 +
605
602
' Inserts a new collection item to the collection at the Index position' );
@@ -998,7 +995,6 @@ procedure TPyDelphiComponent.SetDelphiObject(const Value: TComponent);
998
995
class procedure TPyDelphiComponent.RegisterGetSets (
999
996
PythonType: TPythonType);
1000
997
begin
1001
- inherited ;
1002
998
with PythonType do
1003
999
begin
1004
1000
AddGetSet(' ComponentCount' , @TPyDelphiComponent.Get_ComponentCount, nil ,
@@ -1013,7 +1009,6 @@ class procedure TPyDelphiComponent.RegisterGetSets(
1013
1009
class procedure TPyDelphiComponent.RegisterMethods (
1014
1010
PythonType: TPythonType);
1015
1011
begin
1016
- inherited ;
1017
1012
PythonType.AddMethod(' GetParentComponent' , @TPyDelphiComponent.GetParentComponent_Wrapper,
1018
1013
' TComponent.GetParentComponent()' #10 +
1019
1014
' Returns the parent of a component.' );
@@ -1462,7 +1457,6 @@ function TPyDelphiStrings.MpSubscript(obj: PPyObject): PPyObject;
1462
1457
1463
1458
class procedure TPyDelphiStrings.RegisterGetSets (PythonType: TPythonType);
1464
1459
begin
1465
- inherited ;
1466
1460
with PythonType do
1467
1461
begin
1468
1462
AddGetSet(' Capacity' , @TPyDelphiStrings.Get_Capacity, @TPyDelphiStrings.Set_Capacity,
@@ -1476,7 +1470,6 @@ class procedure TPyDelphiStrings.RegisterGetSets(PythonType: TPythonType);
1476
1470
1477
1471
class procedure TPyDelphiStrings.RegisterMethods (PythonType: TPythonType);
1478
1472
begin
1479
- inherited ;
1480
1473
PythonType.AddMethod(' Add' , @TPyDelphiStrings.Add_Wrapper,
1481
1474
' TStrings.Add(s)' #10 +
1482
1475
' Adds a string to the TStrings object and returns the index position' );
@@ -1573,7 +1566,6 @@ function TPyDelphiBasicAction.Get_ActionComponent(AContext: Pointer): PPyObject;
1573
1566
class procedure TPyDelphiBasicAction.RegisterGetSets (
1574
1567
PythonType: TPythonType);
1575
1568
begin
1576
- inherited ;
1577
1569
with PythonType do
1578
1570
begin
1579
1571
AddGetSet(' ActionComponent' , @TPyDelphiBasicAction.Get_ActionComponent, @TPyDelphiBasicAction.Set_ActionComponent,
@@ -1584,7 +1576,6 @@ class procedure TPyDelphiBasicAction.RegisterGetSets(
1584
1576
class procedure TPyDelphiBasicAction.RegisterMethods (
1585
1577
PythonType: TPythonType);
1586
1578
begin
1587
- inherited ;
1588
1579
PythonType.AddMethod(' Execute' , @TPyDelphiBasicAction.Execute_Wrapper,
1589
1580
' TBasicAction.Execute()' #10 +
1590
1581
' Generates an OnExecute event.' );
0 commit comments