diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-02-23 20:49:55 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-02-23 20:49:55 (GMT) |
commit | 448b28836eb910f95e2f1903b4dea5eb8548e424 (patch) | |
tree | 4163d92b8a5b2126fe8413cc21df8eb3f247dbfa /src/index.cpp | |
parent | 067ee3cfc7a79acd42cedb3f89713b9ed5f47f93 (diff) | |
download | Doxygen-448b28836eb910f95e2f1903b4dea5eb8548e424.zip Doxygen-448b28836eb910f95e2f1903b4dea5eb8548e424.tar.gz Doxygen-448b28836eb910f95e2f1903b4dea5eb8548e424.tar.bz2 |
Doxygen-1.3-rc3-20030223
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/index.cpp b/src/index.cpp index 42a0452..f039e1d 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -2755,6 +2755,7 @@ void writeIndex(OutputList &ol) if (Doxygen::mainPage) { + Doxygen::insideMainPage=TRUE; ol.parseDoc(defFileName,defLine,0,0,Doxygen::mainPage->doc,FALSE); if (!Config_getString("GENERATE_TAGFILE").isEmpty()) @@ -2776,6 +2777,7 @@ void writeIndex(OutputList &ol) Doxygen::mainPage->writeDocAnchorsToTagFile(); Doxygen::tagFile << " </compound>" << endl; } + Doxygen::insideMainPage=FALSE; } endFile(ol); @@ -2912,6 +2914,7 @@ void writeIndex(OutputList &ol) if (Doxygen::mainPage) { + Doxygen::insideMainPage=TRUE; ol.disable(OutputGenerator::Man); startFile(ol,Doxygen::mainPage->name,0,Doxygen::mainPage->title); //SectionInfo *si=0; @@ -2927,6 +2930,7 @@ void writeIndex(OutputList &ol) ol.endTextBlock(); endFile(ol); ol.enable(OutputGenerator::Man); + Doxygen::insideMainPage=FALSE; } ol.popGeneratorState(); |