git-svn-id: trunk@17678 -
This commit is contained in:
joost 2011-06-06 19:43:05 +00:00
parent 82ffdb48c9
commit f5d7fb3d45

View File

@ -103,12 +103,9 @@ Function TParams.CreateParam(FldType: TFieldType; const ParamName: string;
begin
Result:=Add as TParam;
With Result do
begin
Name:=ParamName;
DataType:=FldType;
ParamType:=ParamType;
end;
Result.Name:=ParamName;
Result.DataType:=FldType;
Result.ParamType:=ParamType;
end;
Function TParams.FindParam(const Value: string): TParam;