summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp13
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);