|
@@ -1128,9 +1128,9 @@ end;
|
|
|
|
|
|
function TPasFileType.GetDeclaration (full : boolean) : string;
|
|
function TPasFileType.GetDeclaration (full : boolean) : string;
|
|
begin
|
|
begin
|
|
- Result:='File of ';
|
|
|
|
|
|
+ Result:='File';
|
|
If Assigned(Eltype) then
|
|
If Assigned(Eltype) then
|
|
- Result:=Result+ElType.Name;
|
|
|
|
|
|
+ Result:=Result+' of '+ElType.Name;
|
|
If Full Then
|
|
If Full Then
|
|
Result:=Name+' = '+Result;
|
|
Result:=Name+' = '+Result;
|
|
end;
|
|
end;
|