Commit 5bebcfb4 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Remove bogus argument to avoid compiler warning

parent 738c0dd8
...@@ -1857,7 +1857,7 @@ void FileDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCS ...@@ -1857,7 +1857,7 @@ void FileDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCS
} }
else else
{ {
ml->writeDeclarations(ol,0,0,this,0,title,0,definitionType()); ml->writeDeclarations(ol,0,0,this,0,title,0);
} }
} }
} }
......
...@@ -1621,7 +1621,7 @@ void GroupDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QC ...@@ -1621,7 +1621,7 @@ void GroupDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QC
} }
if (ml) if (ml)
{ {
ml->writeDeclarations(ol,0,0,0,this,title,0,definitionType()); ml->writeDeclarations(ol,0,0,0,this,title,0);
} }
} }
......
...@@ -1088,7 +1088,7 @@ MemberList *NamespaceDef::getMemberList(MemberListType lt) const ...@@ -1088,7 +1088,7 @@ MemberList *NamespaceDef::getMemberList(MemberListType lt) const
void NamespaceDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCString &title) void NamespaceDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCString &title)
{ {
MemberList * ml = getMemberList(lt); MemberList * ml = getMemberList(lt);
if (ml) ml->writeDeclarations(ol,0,this,0,0,title,0,DefinitionIntf::TypeNamespace); if (ml) ml->writeDeclarations(ol,0,this,0,0,title,0);
} }
void NamespaceDef::writeMemberDocumentation(OutputList &ol,MemberListType lt,const QCString &title) void NamespaceDef::writeMemberDocumentation(OutputList &ol,MemberListType lt,const QCString &title)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment