mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 01:50:38 +01:00
* Fix implicit inheritance in writing of content file.
git-svn-id: trunk@15866 -
This commit is contained in:
parent
0d4d22690c
commit
d4360154a7
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user