summaryrefslogtreecommitdiffstats
path: root/src/filedef.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-03-12 17:43:22 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-03-12 17:43:22 (GMT)
commitde611600b5521fab9d65a1b4f27d2042e7b546f9 (patch)
treee9f3eb760b666941c8905588b99d5e8378c8b507 /src/filedef.cpp
parent000241f7603af61328b25cd9a9defc40be43e558 (diff)
downloadDoxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.zip
Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.tar.gz
Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.tar.bz2
Release 1.1.1
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r--src/filedef.cpp35
1 files changed, 17 insertions, 18 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp
index 5caacff..e6409da 100644
--- a/src/filedef.cpp
+++ b/src/filedef.cpp
@@ -294,7 +294,7 @@ void FileDef::writeDocumentation(OutputList &ol)
if (found) ol.endMemberList();
}
- allMemberList.writeDeclarations(ol,0,0,this,0,0);
+ allMemberList.writeDeclarations(ol,0,0,this,0,0,0);
ol.endMemberSections();
//doc=doc.stripWhiteSpace();
@@ -346,75 +346,74 @@ void FileDef::writeDocumentation(OutputList &ol)
}
}
- //memList->countDocMembers();
defineMembers.countDocMembers();
- if ( /*memList->defineCount()>0*/ defineMembers.totalCount()>0 )
+ if (defineMembers.totalCount()>0 )
{
ol.writeRuler();
ol.startGroupHeader();
parseText(ol,theTranslator->trDefineDocumentation());
ol.endGroupHeader();
- /*memList->*/defineMembers.writeDocumentation(ol,name()/*,MemberDef::Define*/);
+ defineMembers.writeDocumentation(ol,name());
}
protoMembers.countDocMembers();
- if ( /*memList->protoCount()>0*/ protoMembers.totalCount()>0 )
+ if (protoMembers.totalCount()>0 )
{
ol.writeRuler();
ol.startGroupHeader();
parseText(ol,theTranslator->trFunctionPrototypeDocumentation());
ol.endGroupHeader();
- /*memList->*/protoMembers.writeDocumentation(ol,name()/*,MemberDef::Prototype*/);
+ protoMembers.writeDocumentation(ol,name());
}
typedefMembers.countDocMembers();
- if ( /*memList->typedefCount()>0*/ typedefMembers.totalCount()>0 )
+ if (typedefMembers.totalCount()>0 )
{
ol.writeRuler();
ol.startGroupHeader();
parseText(ol,theTranslator->trTypedefDocumentation());
ol.endGroupHeader();
- /*memList->*/typedefMembers.writeDocumentation(ol,name()/*,MemberDef::Typedef*/);
+ typedefMembers.writeDocumentation(ol,name());
}
enumMembers.countDocMembers();
- if ( /*memList->enumCount()>0*/ enumMembers.totalCount()>0 )
+ if (enumMembers.totalCount()>0 )
{
ol.writeRuler();
ol.startGroupHeader();
parseText(ol,theTranslator->trEnumerationTypeDocumentation());
ol.endGroupHeader();
- /*memList->*/enumMembers.writeDocumentation(ol,name()/*,MemberDef::Enumeration*/);
+ enumMembers.writeDocumentation(ol,name());
}
enumValMembers.countDocMembers();
- if ( /*memList->enumValueCount()>0*/ enumValMembers.totalCount()>0 )
+ if (enumValMembers.totalCount()>0 )
{
ol.writeRuler();
ol.startGroupHeader();
parseText(ol,theTranslator->trEnumerationValueDocumentation());
ol.endGroupHeader();
- /*memList->*/enumValMembers.writeDocumentation(ol,name()/*,MemberDef::EnumValue*/);
+ enumValMembers.writeDocumentation(ol,name());
}
funcMembers.countDocMembers();
- if ( /*memList->funcCount()>0*/ funcMembers.totalCount()>0 )
+ if (funcMembers.totalCount()>0 )
{
ol.writeRuler();
ol.startGroupHeader();
parseText(ol,theTranslator->trFunctionDocumentation());
ol.endGroupHeader();
- /*memList->*/funcMembers.writeDocumentation(ol,name()/*,MemberDef::Function*/);
+ funcMembers.writeDocumentation(ol,name());
}
varMembers.countDocMembers();
- if ( /*memList->varCount()>0*/ varMembers.totalCount()>0 )
+ if (varMembers.totalCount()>0 )
{
ol.writeRuler();
ol.startGroupHeader();
parseText(ol,theTranslator->trVariableDocumentation());
ol.endGroupHeader();
- /*memList->*/varMembers.writeDocumentation(ol,name()/*,MemberDef::Variable*/);
+ varMembers.writeDocumentation(ol,name());
}
// write Author section (Man only)
@@ -573,8 +572,8 @@ int FileList::compareItems(GCI item1, GCI item2)
FileDef *f2=(FileDef *)item2;
ASSERT(f1!=0 && f2!=0);
return Config::fullPathNameFlag ?
- strcasecmp(f1->absFilePath(),f2->absFilePath()) :
- strcasecmp(f1->name(),f2->name());
+ stricmp(f1->absFilePath(),f2->absFilePath()) :
+ stricmp(f1->name(),f2->name());
}
/*! Create a file list iterator. */