diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-08-04 20:55:47 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-08-04 20:55:47 (GMT) |
commit | 2e2f09d60ce079a1fe283e47bcf023de01f051c5 (patch) | |
tree | 8e54169bc0b7214246ec4c1dfe3f58228ef12928 /src/index.cpp | |
parent | adac91e9a353095c3bae4b580d27b7cfd8617493 (diff) | |
download | Doxygen-2e2f09d60ce079a1fe283e47bcf023de01f051c5.zip Doxygen-2e2f09d60ce079a1fe283e47bcf023de01f051c5.tar.gz Doxygen-2e2f09d60ce079a1fe283e47bcf023de01f051c5.tar.bz2 |
Release-1.2.17-20020804
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/index.cpp b/src/index.cpp index 2754080..ac20381 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -1012,7 +1012,7 @@ void writeFileIndex(OutputList &ol) { //ol.docify(" ("); parseDoc(ol, - fd->absFilePath(),1, + fd->briefFile(),fd->briefLine(), 0,0, abbreviate(fd->briefDescription(),fd->name())); //ol.docify(")"); @@ -1135,7 +1135,7 @@ void writeNamespaceIndex(OutputList &ol) { //ol.docify(" ("); parseDoc(ol, - nd->getDefFileName(),nd->getDefLine(), + nd->briefFile(),nd->briefLine(), nd->name(),0, abbreviate(nd->briefDescription(),nd->displayName())); //ol.docify(")"); @@ -1211,7 +1211,7 @@ void writeAnnotatedClassList(OutputList &ol) { //ol.docify(" ("); parseDoc(ol, - cd->getDefFileName(),cd->getDefLine(), + cd->briefFile(),cd->briefLine(), cd->name(),0, abbreviate(cd->briefDescription(),cd->name())); //ol.docify(")"); @@ -1581,9 +1581,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.startSection(anchor,title,TRUE); + ol.startSection(anchor,title,SectionInfo::Subsection); ol.docify(title); - ol.endSection(anchor,TRUE); + ol.endSection(anchor,SectionInfo::Subsection); ol.startItemList(); first=FALSE; } @@ -1763,9 +1763,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.startSection(anchor,title,TRUE); + ol.startSection(anchor,title,SectionInfo::Subsection); ol.docify(title); - ol.endSection(anchor,TRUE); + ol.endSection(anchor,SectionInfo::Subsection); ol.startItemList(); first=FALSE; } @@ -1841,9 +1841,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.startSection(anchor,title,TRUE); + ol.startSection(anchor,title,SectionInfo::Subsection); ol.docify(title); - ol.endSection(anchor,TRUE); + ol.endSection(anchor,SectionInfo::Subsection); ol.startItemList(); first=FALSE; } @@ -2589,7 +2589,7 @@ void writeGroupList(OutputList &ol) ol.endTextLink(); ol.endDescItem(); parseDoc(ol, - gd->getDefFileName(),gd->getDefLine(), + gd->briefFile(),gd->briefLine(), 0,0,gd->briefDescription()); ol.newParagraph(); //} |