Skip to content

Commit

Permalink
Remove bogus argument to avoid compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Nov 29, 2014
1 parent 738c0dd commit 5bebcfb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/filedef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1857,7 +1857,7 @@ void FileDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCS
}
else
{
ml->writeDeclarations(ol,0,0,this,0,title,0,definitionType());
ml->writeDeclarations(ol,0,0,this,0,title,0);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/groupdef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ void GroupDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QC
}
if (ml)
{
ml->writeDeclarations(ol,0,0,0,this,title,0,definitionType());
ml->writeDeclarations(ol,0,0,0,this,title,0);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/namespacedef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ MemberList *NamespaceDef::getMemberList(MemberListType lt) const
void NamespaceDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCString &title)
{
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)
Expand Down

0 comments on commit 5bebcfb

Please sign in to comment.