summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-02-10 18:17:19 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-02-10 18:17:19 (GMT)
commit24f9a159dd76047cf03b92e7d71010947efaf164 (patch)
treed1468ce96ea2cb67fa7825027a3f93a67bf4d9a6 /src/namespacedef.cpp
parent1335cc7076d6a752c43c9a4eef958feef84d3edd (diff)
downloadDoxygen-24f9a159dd76047cf03b92e7d71010947efaf164.zip
Doxygen-24f9a159dd76047cf03b92e7d71010947efaf164.tar.gz
Doxygen-24f9a159dd76047cf03b92e7d71010947efaf164.tar.bz2
Release-1.2.13-20020210
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r--src/namespacedef.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp
index 323bb85..96affc7 100644
--- a/src/namespacedef.cpp
+++ b/src/namespacedef.cpp
@@ -177,13 +177,14 @@ void NamespaceDef::writeDocumentation(OutputList &ol)
startTitle(ol,getOutputFileBase());
//ol.docify(pageTitle);
parseText(ol,theTranslator->trNamespaceReference(name()));
+ addGroupListToTitle(ol,this);
endTitle(ol,getOutputFileBase(),name());
if (!Config_getString("GENERATE_TAGFILE").isEmpty())
{
Doxygen::tagFile << " <compound kind=\"namespace\">" << endl;
Doxygen::tagFile << " <name>" << convertToXML(name()) << "</name>" << endl;
- Doxygen::tagFile << " <filename>" << convertToXML(getOutputFileBase()) << ".html</filename>" << endl;
+ Doxygen::tagFile << " <filename>" << convertToXML(getOutputFileBase()) << htmlFileExtension << "</filename>" << endl;
}
ol.startTextBlock();