mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 13:19:34 +01:00
* Added enumerated values to index page, as they are known identifiers
git-svn-id: trunk@11162 -
This commit is contained in:
parent
67fe053e3c
commit
7c4a1ebfe1
@ -1464,7 +1464,9 @@ begin
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end else
|
||||
end else if Element is TPasEnumValue then
|
||||
s := ResolveLinkID(Element.Parent.PathName)
|
||||
else
|
||||
s := ResolveLinkID(Element.PathName);
|
||||
|
||||
if Length(s) > 0 then
|
||||
@ -2261,6 +2263,8 @@ procedure THTMLWriter.AddModuleIdentifiers(AModule : TPasModule; L : TStrings);
|
||||
begin
|
||||
El:=TPasElement(List[I]);
|
||||
L.AddObject(El.Name,El);
|
||||
If el is TPasEnumType then
|
||||
AddElementsFromList(L,TPasEnumType(el).Values);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user