summaryrefslogtreecommitdiffstats
path: root/src/groupdef.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/groupdef.cpp
parentf397aa6aa3e425c97c7bff085ea1aff7b479d7e8 (diff)
downloadDoxygen-a9862d8487c3abbf3edccc78e177874f4186c822.zip
Doxygen-a9862d8487c3abbf3edccc78e177874f4186c822.tar.gz
Doxygen-a9862d8487c3abbf3edccc78e177874f4186c822.tar.bz2
Release-1.8.1.2
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r--src/groupdef.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp
index 77b706b..910d2b5 100644
--- a/src/groupdef.cpp
+++ b/src/groupdef.cpp
@@ -547,9 +547,12 @@ void GroupDef::writeDetailedDescription(OutputList &ol,const QCString &title)
{
if (pageDict->count()!=countMembers()) // not only pages -> classical layout
{
- 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();
@@ -883,7 +886,8 @@ void GroupDef::writeSummaryLinks(OutputList &ol)
lde->kind()==LayoutDocEntry::GroupFiles ? "files" :
lde->kind()==LayoutDocEntry::GroupNestedGroups ? "groups" :
"dirs";
- writeSummaryLink(ol,label,ls->title,first);
+ ol.writeSummaryLink(0,label,ls->title,first);
+ first=FALSE;
}
else if (lde->kind()==LayoutDocEntry::MemberDecl)
{
@@ -891,7 +895,8 @@ void GroupDef::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;
}
}
}