diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-12-06 18:20:45 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-12-06 18:20:45 (GMT) |
commit | b6ef778f99fb691dc98832a43bd14cbd7e23d820 (patch) | |
tree | db6a4cf330b3c7b7dc387321cabe709ba675e957 /src/index.cpp | |
parent | 02aa9b678dbeb1867c68278045b28d7bc1683f7c (diff) | |
download | Doxygen-b6ef778f99fb691dc98832a43bd14cbd7e23d820.zip Doxygen-b6ef778f99fb691dc98832a43bd14cbd7e23d820.tar.gz Doxygen-b6ef778f99fb691dc98832a43bd14cbd7e23d820.tar.bz2 |
Doxygen-1.3.9.1-20041206
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/index.cpp b/src/index.cpp index 53a8c48..0951cc8 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -885,7 +885,8 @@ void writeFileIndex(OutputList &ol) FALSE, // index words FALSE, // isExample 0, // example name - TRUE // single line + TRUE, // single line + TRUE // link from index ); //ol.docify(")"); } @@ -1011,7 +1012,10 @@ void writeNamespaceIndex(OutputList &ol) nd,0, abbreviate(nd->briefDescription(),nd->displayName()), FALSE, // index words - FALSE // isExample + FALSE, // isExample + 0, // example name + TRUE, // single line + TRUE // link from index ); //ol.docify(")"); } @@ -1131,7 +1135,10 @@ void writeAnnotatedClassList(OutputList &ol) cd,0, abbreviate(cd->briefDescription(),cd->displayName()), FALSE, // indexWords - FALSE // isExample + FALSE, // isExample + 0, // example name + TRUE, // single line + TRUE // link from index ); } ol.endIndexValue(cd->getOutputFileBase(),hasBrief); |