@@ -1838,13 +1838,13 @@ void HtmlGenerator::startSection(const QCString &lab,const QCString &,SectionTyp
18381838{
18391839 switch (type.level ())
18401840 {
1841- case SectionType::Page: m_t << " \n\n <h1>" ; break ;
1842- case SectionType::Section: m_t << " \n\n <h2>" ; break ;
1843- case SectionType::Subsection: m_t << " \n\n <h3>" ; break ;
1844- case SectionType::Subsubsection: m_t << " \n\n <h4>" ; break ;
1845- case SectionType::Paragraph: m_t << " \n\n <h5>" ; break ;
1846- case SectionType::Subparagraph: m_t << " \n\n <h6>" ; break ;
1847- case SectionType::Subsubparagraph: m_t << " \n\n <h6>" ; break ;
1841+ case SectionType::Page: m_t << " \n\n <h1 class= \" doxsection \" >" ; break ;
1842+ case SectionType::Section: m_t << " \n\n <h2 class= \" doxsection \" >" ; break ;
1843+ case SectionType::Subsection: m_t << " \n\n <h3 class= \" doxsection \" >" ; break ;
1844+ case SectionType::Subsubsection: m_t << " \n\n <h4 class= \" doxsection \" >" ; break ;
1845+ case SectionType::Paragraph: m_t << " \n\n <h5 class= \" doxsection \" >" ; break ;
1846+ case SectionType::Subparagraph: m_t << " \n\n <h6 class= \" doxsection \" >" ; break ;
1847+ case SectionType::Subsubparagraph: m_t << " \n\n <h6 class= \" doxsection \" >" ; break ;
18481848 default : ASSERT (0 ); break ;
18491849 }
18501850 m_t << " <a id=\" " << lab << " \" name=\" " << lab << " \" ></a>" ;
@@ -2045,7 +2045,7 @@ void HtmlGenerator::startMemberItem(const QCString &anchor,MemberItemType type,c
20452045 m_t << " <table class=\" memberdecls\" >\n " ;
20462046 m_emptySection=FALSE ;
20472047 }
2048- m_t << " <tr class=\" memitem:" << anchor;
2048+ m_t << " <tr class=\" memitem:" << convertToId ( anchor) ;
20492049 if (!inheritId.isEmpty ())
20502050 {
20512051 m_t << " inherit " << inheritId;
@@ -2075,7 +2075,7 @@ void HtmlGenerator::startMemberTemplateParams()
20752075void HtmlGenerator::endMemberTemplateParams (const QCString &anchor,const QCString &inheritId)
20762076{
20772077 m_t << " </td></tr>\n " ;
2078- m_t << " <tr class=\" memitem:" << anchor;
2078+ m_t << " <tr class=\" memitem:" << convertToId ( anchor) ;
20792079 if (!inheritId.isEmpty ())
20802080 {
20812081 m_t << " inherit " << inheritId;
@@ -2515,7 +2515,7 @@ void HtmlGenerator::writeGraphicalHierarchy(DotGfxHierarchyTable &g)
25152515
25162516void HtmlGenerator::startMemberGroupHeader (const QCString &id,bool )
25172517{
2518- m_t << " <tr id=\" " << id << " \" class=\" groupHeader\" ><td colspan=\" 2\" ><div class=\" groupHeader\" >" ;
2518+ m_t << " <tr id=\" " << id << " \" class=\" groupHeader\" ><td colspan=\" 2\" ><div class=\" groupHeader\" >" ;
25192519}
25202520
25212521void HtmlGenerator::endMemberGroupHeader ()
0 commit comments