summaryrefslogtreecommitdiffstats
path: root/src/pagedef.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pagedef.cpp')
-rw-r--r--src/pagedef.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pagedef.cpp b/src/pagedef.cpp
index 3023ed8..607fa1d 100644
--- a/src/pagedef.cpp
+++ b/src/pagedef.cpp
@@ -96,7 +96,6 @@ void PageDef::writeDocumentation(OutputList &ol)
}
ol.endQuickIndices();
- ol.startContents();
// save old generator state and write title only to Man generator
ol.pushGeneratorState();
@@ -116,13 +115,16 @@ void PageDef::writeDocumentation(OutputList &ol)
if (!title().isEmpty() && !name().isEmpty() &&
(si=Doxygen::sectionDict.find(name()))!=0)
{
- ol.startSection(si->label,si->title,si->type);
+ //ol.startSection(si->label,si->title,si->type);
+ startTitle(ol,getOutputFileBase(),this);
ol.parseDoc(docFile(),docLine(),this,0,si->title,TRUE,FALSE,0,TRUE,FALSE);
//stringToSearchIndex(getOutputFileBase(),
// theTranslator->trPage(TRUE,TRUE)+" "+si->title,
// si->title);
- ol.endSection(si->label,si->type);
+ //ol.endSection(si->label,si->type);
+ endTitle(ol,getOutputFileBase(),name());
}
+ ol.startContents();
ol.popGeneratorState();
//2.}