diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-02-23 20:49:55 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-02-23 20:49:55 (GMT) |
commit | 6ac75f5093a2ac447626579cfbda2d1a8af6d86e (patch) | |
tree | 4163d92b8a5b2126fe8413cc21df8eb3f247dbfa /src/index.cpp | |
parent | b0cbd5971eb11555a9ea3ab5c23f2b0b97279b4d (diff) | |
download | Doxygen-6ac75f5093a2ac447626579cfbda2d1a8af6d86e.zip Doxygen-6ac75f5093a2ac447626579cfbda2d1a8af6d86e.tar.gz Doxygen-6ac75f5093a2ac447626579cfbda2d1a8af6d86e.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(); |