Skip to content

Commit 61f3578

Browse files
committed
Fixing a typo
1 parent 49c6d97 commit 61f3578

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/vcl/WrapVclExtCtrls.pas

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ TPyDelphiLinkLabel = class (TPyDelphiCustomLinkLabel)
198198
property DelphiObject: TLinkLabel read GetDelphiObject write SetDelphiObject;
199199
end;
200200

201-
function SysLinkTypeToPython(const ASymLinkType: TSysLinkType): PPyObject;
201+
function SysLinkTypeToPython(const ASysLinkType: TSysLinkType): PPyObject;
202202

203203
implementation
204204

@@ -254,10 +254,10 @@ procedure TExtCtrlsRegistration.RegisterWrappers(APyDelphiWrapper: TPyDelphiWrap
254254
APyDelphiWrapper.EventHandlers.RegisterHandler(TSysLinkEventHandler);
255255
end;
256256

257-
function SysLinkTypeToPython(const ASymLinkType: TSysLinkType): PPyObject;
257+
function SysLinkTypeToPython(const ASysLinkType: TSysLinkType): PPyObject;
258258
begin
259259
Result := GetPythonEngine.PyUnicodeFromString(
260-
TRttiEnumerationType.GetName<TSysLinkType>(ASymLinkType));
260+
TRttiEnumerationType.GetName<TSysLinkType>(ASysLinkType));
261261
end;
262262

263263
{ TPyDelphiShape }

0 commit comments

Comments
 (0)