Skip to content

Commit

Permalink
Merge branch 'master' of github.com:doxygen/doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Apr 3, 2024
2 parents ea75752 + 9f35590 commit ea69f77
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/memberlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ int genericCompareMembers(const MemberDef *c1,const MemberDef *c2)
}
// sort on name
int cmp = qstricmp(c1->name(),c2->name());
// then on qualified name
if (cmp==0)
{
cmp = qstricmp(c1->qualifiedName(),c2->qualifiedName());
}
// then on argument list
if (cmp==0 && !c1->argsString().isEmpty() && !c2->argsString().isEmpty())
{
Expand Down

0 comments on commit ea69f77

Please sign in to comment.