File tree 1 file changed +4
-4
lines changed
Filter options
1 file changed +4
-4
lines changed
Original file line number Diff line number Diff line change @@ -553,16 +553,16 @@ TPyDelphiObject = class (TPyInterfacedObject, IFreeNotificationSubscriber)
553
553
class function ExcludedExposedMembers (APythonType: TPythonType): TArray<string>; virtual ;
554
554
class procedure ExposeMethods (AClass: TClass; NearestAncestorClass: TClass;
555
555
APythonType: TPythonType; APyDelphiWrapper: TPyDelphiWrapper;
556
- AExcludedMethodNames: TArray<string> = [] );
556
+ AExcludedMethodNames: TArray<string> = nil );
557
557
class procedure ExposeFields (AClass: TClass; NearestAncestorClass: TClass;
558
558
APythonType: TPythonType; APyDelphiWrapper: TPyDelphiWrapper;
559
- AExcludedFieldNames: TArray<string> = [] );
559
+ AExcludedFieldNames: TArray<string> = nil );
560
560
class procedure ExposeProperties (AClass: TClass; NearestAncestorClass: TClass;
561
561
APythonType: TPythonType; APyDelphiWrapper: TPyDelphiWrapper;
562
- AExcludedPropertyNames: TArray<string> = [] );
562
+ AExcludedPropertyNames: TArray<string> = nil );
563
563
class procedure ExposeIndexedProperties (AClass: TClass; NearestAncestorClass: TClass;
564
564
APythonType: TPythonType; APyDelphiWrapper: TPyDelphiWrapper;
565
- AExcludedPropertyNames: TArray<string> = [] );
565
+ AExcludedPropertyNames: TArray<string> = nil );
566
566
{ $ENDIF EXTENDED_RTTI}
567
567
public
568
568
PyDelphiWrapper : TPyDelphiWrapper;
You can’t perform that action at this time.
0 commit comments