mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 07:55:58 +02:00
fixed method typedata param order
git-svn-id: trunk@9465 -
This commit is contained in:
parent
58336e8ba1
commit
deb6720ea0
@ -188,8 +188,8 @@ begin
|
|||||||
if phpWithParameterNames in Attr then
|
if phpWithParameterNames in Attr then
|
||||||
s:=s+ParamType.ParamName;
|
s:=s+ParamType.ParamName;
|
||||||
s:=s+':'+ParamType.TypeName;
|
s:=s+':'+ParamType.TypeName;
|
||||||
if i>0 then s:=s+';';
|
if i>0 then s:=';'+s;
|
||||||
ParamString:=s+ParamString;
|
ParamString:=ParamString+s;
|
||||||
end;
|
end;
|
||||||
Result:=Result+ParamString+')';
|
Result:=Result+ParamString+')';
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user