* Fix implicit inheritance in writing of content file.

git-svn-id: trunk@15866 -
This commit is contained in:
marco 2010-08-21 16:25:57 +00:00
parent 0d4d22690c
commit d4360154a7

View File

@ -829,7 +829,9 @@ begin
if Assigned(ClassDecl.AncestorType) then
Write(ContentFile, ClassDecl.AncestorType.PathName)
else if ClassDecl.ObjKind = okClass then
Write(ContentFile, '.TObject');
Write(ContentFile, '#rtl.System.TObject')
else if ClassDecl.ObjKind = okInterface then
Write(ContentFile, '#rtl.System.IUnknown');
if ClassDecl.Interfaces.Count>0 then
begin
for k:=0 to ClassDecl.Interfaces.count-1 do