diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-12-10 20:36:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-10 20:36:36 (GMT) |
commit | fcab07461bde28c38d77ecf2954e9efdaac1379c (patch) | |
tree | 39600f9f95e19c519e70f502d64c8ce4d3962ed3 | |
parent | 0a9d5abdbebe37d82e8df9ba6d9332a9ab214d82 (diff) | |
parent | 889a302661db7eba47b70a4a61827a5971dbe75e (diff) | |
download | Doxygen-fcab07461bde28c38d77ecf2954e9efdaac1379c.zip Doxygen-fcab07461bde28c38d77ecf2954e9efdaac1379c.tar.gz Doxygen-fcab07461bde28c38d77ecf2954e9efdaac1379c.tar.bz2 |
Merge pull request #6671 from albert-github/feature/bug_xhtml_vhdl_use_clauses_name_2
XHTML problem with name attribute with VHDL name attribute
-rw-r--r-- | src/classdef.cpp | 2 | ||||
-rw-r--r-- | src/vhdldocgen.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 77d9e05..c9e6dbb 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -1737,7 +1737,7 @@ void ClassDef::writeSummaryLinks(OutputList &ol) SDict<QCString>::Iterator li(m_impl->vhdlSummaryTitles); for (li.toFirst();li.current();++li) { - ol.writeSummaryLink(0,li.current()->data(),li.current()->data(),first); + ol.writeSummaryLink(0,convertToId(li.current()->data()),li.current()->data(),first); first=FALSE; } } diff --git a/src/vhdldocgen.cpp b/src/vhdldocgen.cpp index 7700295..b18bd3f 100644 --- a/src/vhdldocgen.cpp +++ b/src/vhdldocgen.cpp @@ -2329,7 +2329,7 @@ void VhdlDocGen::writeVHDLDeclarations(MemberList* ml,OutputList &ol, if (title) { - ol.startMemberHeader(title,type == VhdlDocGen::PORT ? 3 : 2); + ol.startMemberHeader(convertToId(title),type == VhdlDocGen::PORT ? 3 : 2); ol.parseText(title); ol.endMemberHeader(); ol.docify(" "); |