Skip to content

Commit fcab074

Browse files
authored
Merge pull request doxygen#6671 from albert-github/feature/bug_xhtml_vhdl_use_clauses_name_2
XHTML problem with name attribute with VHDL name attribute
2 parents 0a9d5ab + 889a302 commit fcab074

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/classdef.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1737,7 +1737,7 @@ void ClassDef::writeSummaryLinks(OutputList &ol)
17371737
SDict<QCString>::Iterator li(m_impl->vhdlSummaryTitles);
17381738
for (li.toFirst();li.current();++li)
17391739
{
1740-
ol.writeSummaryLink(0,li.current()->data(),li.current()->data(),first);
1740+
ol.writeSummaryLink(0,convertToId(li.current()->data()),li.current()->data(),first);
17411741
first=FALSE;
17421742
}
17431743
}

src/vhdldocgen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2329,7 +2329,7 @@ void VhdlDocGen::writeVHDLDeclarations(MemberList* ml,OutputList &ol,
23292329

23302330
if (title)
23312331
{
2332-
ol.startMemberHeader(title,type == VhdlDocGen::PORT ? 3 : 2);
2332+
ol.startMemberHeader(convertToId(title),type == VhdlDocGen::PORT ? 3 : 2);
23332333
ol.parseText(title);
23342334
ol.endMemberHeader();
23352335
ol.docify(" ");

0 commit comments

Comments
 (0)