summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-09-17 18:25:49 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-09-17 18:25:49 (GMT)
commiteb31c4be6b40007136845029ee462bdbcb342736 (patch)
tree5aba5305b3e7b2fb117c2057d11523840af09720 /src/index.cpp
parentb91275de37e317332d5c461e4d66a8685e682f80 (diff)
downloadDoxygen-eb31c4be6b40007136845029ee462bdbcb342736.zip
Doxygen-eb31c4be6b40007136845029ee462bdbcb342736.tar.gz
Doxygen-eb31c4be6b40007136845029ee462bdbcb342736.tar.bz2
Release-1.2.1-20000917
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp16
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);