summaryrefslogtreecommitdiffstats
path: root/src/doc.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-09-17 18:25:49 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-09-17 18:25:49 (GMT)
commitd84f6a6a5273a62633fa360133356bc68e3ba289 (patch)
tree5aba5305b3e7b2fb117c2057d11523840af09720 /src/doc.l
parent69ead65c747f7fa7817c0a754dfe2662004037a1 (diff)
downloadDoxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.zip
Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.tar.gz
Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.tar.bz2
Release-1.2.1-20000917
Diffstat (limited to 'src/doc.l')
-rw-r--r--src/doc.l6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/doc.l b/src/doc.l
index c69d4d8..263fd70 100644
--- a/src/doc.l
+++ b/src/doc.l
@@ -1432,8 +1432,11 @@ DOCPARAM ([a-z_A-Z0-9:\<\>\=\.\-]+)|("\"".*"\"")
if ((sec=sectionDict[secName]))
{
//printf("Title %s\n",sec->title.data());
- outDoc->writeSection(sec->label,sec->title,
+ outDoc->startSection(sec->label,sec->title,
sec->type==SectionInfo::Subsection);
+ scanString(sec->title);
+ outDoc->endSection(sec->label,
+ sec->type==SectionInfo::Subsection);
}
}
<DocScan>{CMD}"anchor "{ID}"\n" {
@@ -1510,7 +1513,6 @@ DOCPARAM ([a-z_A-Z0-9:\<\>\=\.\-]+)|("\"".*"\"")
text=sec->title;
if (sec->type==SectionInfo::Anchor)
{
- //outDoc->writeSectionRefAnchor(sec->fileName,sec->label,text);
outDoc->writeObjectLink(0,sec->fileName,sec->label,text);
writePageRef(*outDoc,sec->label,0);
}