From deb6720ea0ab68f3dc620583130a474ff7edc6c0 Mon Sep 17 00:00:00 2001 From: mattias Date: Wed, 21 Jun 2006 18:41:15 +0000 Subject: [PATCH] fixed method typedata param order git-svn-id: trunk@9465 - --- components/codetools/eventcodetool.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/codetools/eventcodetool.pas b/components/codetools/eventcodetool.pas index 178bce9f99..a31cf22429 100644 --- a/components/codetools/eventcodetool.pas +++ b/components/codetools/eventcodetool.pas @@ -188,8 +188,8 @@ begin if phpWithParameterNames in Attr then s:=s+ParamType.ParamName; s:=s+':'+ParamType.TypeName; - if i>0 then s:=s+';'; - ParamString:=s+ParamString; + if i>0 then s:=';'+s; + ParamString:=ParamString+s; end; Result:=Result+ParamString+')'; end;