fpdoc: fixed compile

git-svn-id: trunk@41084 -
This commit is contained in:
Mattias Gaertner 2019-01-27 10:41:12 +00:00
parent fcb2145255
commit c99972bc43

View File

@ -3347,10 +3347,10 @@ var
TDEl := CreateTD(TREl);
CodeEl := CreateCode(CreatePara(TDEl));
AppendKw(CodeEl, 'type');
if AClass.ObjKind=okGeneric then
if AClass.GenericTemplateTypes.Count>0 then
AppendKw(CodeEl, ' generic ');
AppendText(CodeEl, ' ' + UTF8Decode(AClass.Name) + ' ');
if AClass.ObjKind=okGeneric then
if AClass.GenericTemplateTypes.Count>0 then
AppendGenericTypes(CodeEl,AClass.GenericTemplateTypes,false);
AppendSym(CodeEl, '=');
AppendText(CodeEl, ' ');