summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-11-05 19:00:55 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-11-05 19:00:55 (GMT)
commitb12b7063e268e5cdf4f2dcd871c2447efa64e5c3 (patch)
tree912d22a207a65d4bb3ea7b2082ae40a279f17dd0 /src/index.cpp
parent4da971ee56729e0eb2b3a89f763fa0c410f02fc7 (diff)
downloadDoxygen-b12b7063e268e5cdf4f2dcd871c2447efa64e5c3.zip
Doxygen-b12b7063e268e5cdf4f2dcd871c2447efa64e5c3.tar.gz
Doxygen-b12b7063e268e5cdf4f2dcd871c2447efa64e5c3.tar.bz2
Release-1.2.3-20001105
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/index.cpp b/src/index.cpp
index 383b41f..41f8636 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -631,23 +631,23 @@ void writeNamespaceIndex(OutputList &ol)
if (nd->isLinkableInProject())
{
ol.writeStartAnnoItem("namespace",nd->getOutputFileBase(),0,nd->name());
- ol.docify(" (");
if (!nd->briefDescription().isEmpty())
{
+ ol.docify(" (");
OutputList briefOutput(&ol);
parseDoc(briefOutput,
nd->getDefFileName(),nd->getDefLine(),
nd->name(),0,
abbreviate(nd->briefDescription(),nd->name()));
ol+=briefOutput;
+ ol.docify(")");
}
- else
- {
- ol.startEmphasis();
- parseText(ol,theTranslator->trNoDescriptionAvailable());
- ol.endEmphasis();
- }
- ol.docify(")");
+ //else
+ //{
+ // ol.startEmphasis();
+ // parseText(ol,theTranslator->trNoDescriptionAvailable());
+ // ol.endEmphasis();
+ //}
ol.writeEndAnnoItem(nd->getOutputFileBase());
if (hasHtmlHelp)
{
@@ -707,23 +707,23 @@ void writeAnnotatedClassList(OutputList &ol)
default: type="interface"; break;
}
ol.writeStartAnnoItem(type,cd->getOutputFileBase(),0,cd->displayName());
- ol.docify(" (");
if (!cd->briefDescription().isEmpty())
{
+ ol.docify(" (");
OutputList briefOutput(&ol);
parseDoc(briefOutput,
cd->getDefFileName(),cd->getDefLine(),
cd->name(),0,
abbreviate(cd->briefDescription(),cd->name()));
ol+=briefOutput;
+ ol.docify(")");
}
- else
- {
- ol.startEmphasis();
- parseText(ol,theTranslator->trNoDescriptionAvailable());
- ol.endEmphasis();
- }
- ol.docify(")");
+ //else
+ //{
+ // ol.startEmphasis();
+ // parseText(ol,theTranslator->trNoDescriptionAvailable());
+ // ol.endEmphasis();
+ //}
ol.writeEndAnnoItem(cd->getOutputFileBase());
if (Config::generateHtml && Config::htmlHelpFlag)
{