codetools: MethodTypeDataToStr: add colon if parameter names added

git-svn-id: trunk@28565 -
This commit is contained in:
mattias 2010-11-30 08:34:52 +00:00
parent a15e960f93
commit 4b2342c80b

View File

@ -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;