summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2011-04-26 10:48:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2011-04-26 10:48:48 (GMT)
commitc604d141eb8b0708022a3e4b48b0b1871b692aa6 (patch)
tree5b1b526ababed94fc83b11349dd828da3bf11882 /src/namespacedef.cpp
parent145b564516f82be1bb4cc5a82277e7c9d10ca5ca (diff)
downloadDoxygen-c604d141eb8b0708022a3e4b48b0b1871b692aa6.zip
Doxygen-c604d141eb8b0708022a3e4b48b0b1871b692aa6.tar.gz
Doxygen-c604d141eb8b0708022a3e4b48b0b1871b692aa6.tar.bz2
Release-1.7.4-20110426
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r--src/namespacedef.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp
index eca2dfe..0ea3edb 100644
--- a/src/namespacedef.cpp
+++ b/src/namespacedef.cpp
@@ -274,7 +274,7 @@ void NamespaceDef::writeDetailedDescription(OutputList &ol,const QCString &title
void NamespaceDef::writeBriefDescription(OutputList &ol)
{
- if (!briefDescription().isEmpty())
+ if (!briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC"))
{
ol.startParagraph();
ol.parseDoc(briefFile(),briefLine(),this,0,
@@ -440,7 +440,7 @@ void NamespaceDef::writeDocumentation(OutputList &ol)
}
startTitle(ol,getOutputFileBase(),this);
- ol.parseText(pageTitle);
+ ol.parseText(pageTitle,TRUE);
addGroupListToTitle(ol,this);
endTitle(ol,getOutputFileBase(),displayName());
ol.startContents();
@@ -865,11 +865,9 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,const char *title,bool loca
ol.endMemberItem();
if (!nd->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC"))
{
- ol.startParagraph();
ol.startMemberDescription();
ol.parseDoc(nd->briefFile(),nd->briefLine(),nd,0,nd->briefDescription(),FALSE,FALSE);
ol.endMemberDescription();
- ol.endParagraph();
}
}
}