summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-07-12 15:32:41 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-07-12 15:32:41 (GMT)
commita9862d8487c3abbf3edccc78e177874f4186c822 (patch)
tree84ec1ff38937e82a2dfe563fc2d140bc337ffd7f /src/namespacedef.cpp
parentf397aa6aa3e425c97c7bff085ea1aff7b479d7e8 (diff)
downloadDoxygen-a9862d8487c3abbf3edccc78e177874f4186c822.zip
Doxygen-a9862d8487c3abbf3edccc78e177874f4186c822.tar.gz
Doxygen-a9862d8487c3abbf3edccc78e177874f4186c822.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;
}
}
}