summaryrefslogtreecommitdiffstats
path: root/src/groupdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-08-04 20:55:47 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-08-04 20:55:47 (GMT)
commitfd9cdfaba64f942f4eb481ac9feb1564115f9f92 (patch)
tree8e54169bc0b7214246ec4c1dfe3f58228ef12928 /src/groupdef.cpp
parent9c8ea2e90bb38ba21675799fe364fc7a546b020c (diff)
downloadDoxygen-fd9cdfaba64f942f4eb481ac9feb1564115f9f92.zip
Doxygen-fd9cdfaba64f942f4eb481ac9feb1564115f9f92.tar.gz
Doxygen-fd9cdfaba64f942f4eb481ac9feb1564115f9f92.tar.bz2
Release-1.2.17-20020804
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r--src/groupdef.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp
index 3380b59..03f64e0 100644
--- a/src/groupdef.cpp
+++ b/src/groupdef.cpp
@@ -356,7 +356,7 @@ void GroupDef::writeDetailedDocumentation(OutputList &ol)
// repeat brief description
if (!briefDescription().isEmpty() && Config_getBool("REPEAT_BRIEF"))
{
- parseDoc(ol,m_defFileName,m_defLine,name(),0,briefDescription());
+ parseDoc(ol,briefFile(),briefLine(),name(),0,briefDescription());
ol.newParagraph();
}
}
@@ -364,7 +364,7 @@ void GroupDef::writeDetailedDocumentation(OutputList &ol)
// write documentation
if (!documentation().isEmpty())
{
- parseDoc(ol,m_defFileName,m_defLine,name(),0,documentation()+"\n");
+ parseDoc(ol,docFile(),docLine(),name(),0,documentation()+"\n");
}
}
}
@@ -386,7 +386,7 @@ void GroupDef::writeDocumentation(OutputList &ol)
}
else if (!briefDescription().isEmpty())
{
- parseDoc(ol,m_defFileName,m_defLine,name(),0,briefDescription());
+ parseDoc(ol,briefFile(),briefLine(),name(),0,briefDescription());
ol.writeString(" \n");
ol.pushGeneratorState();
ol.disable(OutputGenerator::Latex);
@@ -430,7 +430,7 @@ void GroupDef::writeDocumentation(OutputList &ol)
if (!fd->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC"))
{
ol.startMemberDescription();
- parseDoc(ol,m_defFileName,m_defLine,0,0,fd->briefDescription());
+ parseDoc(ol,briefFile(),briefLine(),0,0,fd->briefDescription());
ol.endMemberDescription();
ol.newParagraph();
}
@@ -461,7 +461,7 @@ void GroupDef::writeDocumentation(OutputList &ol)
if (!nd->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC"))
{
ol.startMemberDescription();
- parseDoc(ol,m_defFileName,m_defLine,0,0,nd->briefDescription());
+ parseDoc(ol,briefFile(),briefLine(),0,0,nd->briefDescription());
ol.endMemberDescription();
ol.newParagraph();
}
@@ -491,7 +491,7 @@ void GroupDef::writeDocumentation(OutputList &ol)
if (!gd->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC"))
{
ol.startMemberDescription();
- parseDoc(ol,m_defFileName,m_defLine,0,0,gd->briefDescription());
+ parseDoc(ol,briefFile(),briefLine(),0,0,gd->briefDescription());
ol.endMemberDescription();
ol.newParagraph();
}
@@ -546,9 +546,9 @@ void GroupDef::writeDocumentation(OutputList &ol)
if (!pi->title.isEmpty() && !pi->name.isEmpty() &&
(si=Doxygen::sectionDict[pi->name])!=0)
{
- ol.startSection(si->label,si->title,TRUE);
+ ol.startSection(si->label,si->title,SectionInfo::Subsection);
ol.docify(si->title);
- ol.endSection(si->label,TRUE);
+ ol.endSection(si->label,SectionInfo::Subsection);
}
ol.startTextBlock();
parseDoc(ol,pi->defFileName,pi->defLine,0,0,pi->doc);