diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-17 18:25:49 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-17 18:25:49 (GMT) |
commit | d84f6a6a5273a62633fa360133356bc68e3ba289 (patch) | |
tree | 5aba5305b3e7b2fb117c2057d11523840af09720 /src/index.cpp | |
parent | 69ead65c747f7fa7817c0a754dfe2662004037a1 (diff) | |
download | Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.zip Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.tar.gz Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.tar.bz2 |
Release-1.2.1-20000917
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/index.cpp b/src/index.cpp index 75d5e92..b81f69a 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -972,7 +972,9 @@ void writeMemberList(OutputList &ol,bool useSections) lastChar=cs[0]=tolower(name.at(0));cs[1]='\0'; QCString anchor=(QCString)"index_"+cs; QCString title=(QCString)"- "+cs+" -"; - ol.writeSection(anchor,title,TRUE); + ol.startSection(anchor,title,TRUE); + ol.docify(title); + ol.endSection(anchor,TRUE); ol.startItemList(); first=FALSE; } @@ -1135,7 +1137,9 @@ void writeFileMemberList(OutputList &ol,bool useSections) lastChar=cs[0]=tolower(name.at(0));cs[1]='\0'; QCString anchor=(QCString)"index_"+cs; QCString title=(QCString)"- "+cs+" -"; - ol.writeSection(anchor,title,TRUE); + ol.startSection(anchor,title,TRUE); + ol.docify(title); + ol.endSection(anchor,TRUE); ol.startItemList(); first=FALSE; } @@ -1212,7 +1216,9 @@ void writeNamespaceMemberList(OutputList &ol,bool useSections) lastChar=cs[0]=tolower(name.at(0));cs[1]='\0'; QCString anchor=(QCString)"index_"+cs; QCString title=(QCString)"- "+cs+" -"; - ol.writeSection(anchor,title,TRUE); + ol.startSection(anchor,title,TRUE); + ol.docify(title); + ol.endSection(anchor,TRUE); ol.startItemList(); first=FALSE; } @@ -1842,7 +1848,9 @@ void writeIndex(OutputList &ol) if (!mainPage->title.isEmpty() && !mainPage->name.isEmpty() && (si=sectionDict[mainPage->name])!=0) { - ol.writeSection(si->label,si->title,FALSE); + ol.startSection(si->label,si->title,FALSE); + ol.docify(si->title); + ol.endSection(si->label,FALSE); } ol.startTextBlock(); parseDoc(ol,defFileName,defLine,0,0,mainPage->doc); |