mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 10:36:20 +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
|
||||
s:='';
|
||||
if phpWithParameterNames in Attr then
|
||||
s:=s+ParamType.ParamName;
|
||||
s:=s+':'+ParamType.TypeName;
|
||||
s:=s+ParamType.ParamName+':';
|
||||
s:=s+ParamType.TypeName;
|
||||
if Reverse then begin
|
||||
if i>0 then s:=s+';';
|
||||
ParamString:=s+ParamString;
|
||||
|
Loading…
Reference in New Issue
Block a user