mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 06:49:12 +02:00
codetools: MethodTypeDataToStr: add colon if parameter names added
git-svn-id: trunk@28565 -
This commit is contained in:
parent
a15e960f93
commit
4b2342c80b
@ -211,8 +211,8 @@ begin
|
|||||||
end else
|
end else
|
||||||
s:='';
|
s:='';
|
||||||
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 Reverse then begin
|
if Reverse then begin
|
||||||
if i>0 then s:=s+';';
|
if i>0 then s:=s+';';
|
||||||
ParamString:=s+ParamString;
|
ParamString:=s+ParamString;
|
||||||
|
Loading…
Reference in New Issue
Block a user