summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-07-12 15:32:41 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-07-12 15:32:41 (GMT)
commit52445a98210e9aa50b3fd4bb36995e117539e490 (patch)
tree84ec1ff38937e82a2dfe563fc2d140bc337ffd7f /src/namespacedef.cpp
parent0ce3aea886f4e95da56d164b3944fd54d3d68f89 (diff)
downloadDoxygen-52445a98210e9aa50b3fd4bb36995e117539e490.zip
Doxygen-52445a98210e9aa50b3fd4bb36995e117539e490.tar.gz
Doxygen-52445a98210e9aa50b3fd4bb36995e117539e490.tar.bz2
Release-1.8.1.2
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r--src/namespacedef.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp
index ccc80c3..6bbba31 100644
--- a/src/namespacedef.cpp
+++ b/src/namespacedef.cpp
@@ -237,9 +237,12 @@ void NamespaceDef::writeDetailedDescription(OutputList &ol,const QCString &title
!documentation().isEmpty()
)
{
- ol.writeRuler();
ol.pushGeneratorState();
- ol.disableAllBut(OutputGenerator::Html);
+ ol.disable(OutputGenerator::Html);
+ ol.writeRuler();
+ ol.popGeneratorState();
+ ol.pushGeneratorState();
+ ol.disableAllBut(OutputGenerator::Html);
ol.writeAnchor(0,"details");
ol.popGeneratorState();
ol.startGroupHeader();
@@ -394,7 +397,8 @@ void NamespaceDef::writeSummaryLinks(OutputList &ol)
{
LayoutDocEntrySection *ls = (LayoutDocEntrySection*)lde;
QCString label = lde->kind()==LayoutDocEntry::NamespaceClasses ? "nested-classes" : "namespaces";
- writeSummaryLink(ol,label,ls->title,first);
+ ol.writeSummaryLink(0,label,ls->title,first);
+ first=FALSE;
}
else if (lde->kind()== LayoutDocEntry::MemberDecl)
{
@@ -402,7 +406,8 @@ void NamespaceDef::writeSummaryLinks(OutputList &ol)
MemberList * ml = getMemberList(lmd->type);
if (ml && ml->declVisible())
{
- writeSummaryLink(ol,ml->listTypeAsString(),lmd->title,first);
+ ol.writeSummaryLink(0,ml->listTypeAsString(),lmd->title,first);
+ first=FALSE;
}
}
}