* Fixed writing of untyped file

git-svn-id: trunk@7557 -
This commit is contained in:
michael 2007-06-02 22:17:45 +00:00
parent 73b8fba64b
commit b5e048691c

View File

@ -1439,7 +1439,9 @@ begin
// Record type
else if Element.ClassType = TPasRecordType then
Result := AppendRecordType(CodeEl, TableEl, TPasRecordType(Element), NestingLevel)
else
else if (Element.ClassType = TPasFileType) and (TPasFileType(Element).elType=Nil) then
AppendPasSHFragment(CodeEl,'file',0)
else
// Other types
AppendHyperlink(CodeEl, Element);
end;