diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-06 15:11:00 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-06 15:11:00 (GMT) |
commit | ef99315d71b4b8e2c027033665bcc1244f43ca15 (patch) | |
tree | aa501b0916e827fee6032245628509acc64efbba /src/index.cpp | |
parent | e139c0246413d3803028572dcafe9f065f4c9eab (diff) | |
download | Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.zip Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.gz Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.bz2 |
Release-1.2.0-20000806
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/index.cpp b/src/index.cpp index c56d265..c404f35 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -24,7 +24,7 @@ #include "message.h" #include "index.h" #include "doxygen.h" -#include "scanner.h" +#include "doc.h" #include "code.h" #include "config.h" #include "filedef.h" @@ -634,7 +634,7 @@ void writeNamespaceIndex(OutputList &ol) ol.endEmphasis(); } ol.docify(")"); - ol.writeEndAnnoItem(nd->name()); + ol.writeEndAnnoItem(nd->getOutputFileBase()); if (hasHtmlHelp) { htmlHelp->addContentsItem(nd->name(),nd->getOutputFileBase()); @@ -710,7 +710,7 @@ void writeAnnotatedClassList(OutputList &ol) ol.endEmphasis(); } ol.docify(")"); - ol.writeEndAnnoItem(cd->name()); + ol.writeEndAnnoItem(cd->getOutputFileBase()); if (Config::generateHtml && Config::htmlHelpFlag) { HtmlHelp::getInstance()->addContentsItem( @@ -1521,7 +1521,11 @@ void writeGraphInfo(OutputList &ol) startTitle(ol,0); parseText(ol,theTranslator->trLegendTitle()); endTitle(ol,0,0); + bool oldStripCommentsState = Config::stripCommentsFlag; + // temporarily disable the stripping of comments for our own code example! + Config::stripCommentsFlag = FALSE; parseDoc(ol,"graph_legend",1,0,0,theTranslator->trLegendDocs()); + Config::stripCommentsFlag = oldStripCommentsState; endFile(ol); ol.popGeneratorState(); } |