summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-02-09 19:24:59 (GMT)
committerGitHub <noreply@github.com>2019-02-09 19:24:59 (GMT)
commit8e91761d1d6333ccdb05d3400da88fc0b61a4fe7 (patch)
tree27a7695cd0df2efbda48589e2a4af1c13d77b45b /src
parent78b7975759f891fcbf8445e498c3fc9afcb61d19 (diff)
parent4701ccd7797dba00e961648e179e2af9bc203f12 (diff)
downloadDoxygen-8e91761d1d6333ccdb05d3400da88fc0b61a4fe7.zip
Doxygen-8e91761d1d6333ccdb05d3400da88fc0b61a4fe7.tar.gz
Doxygen-8e91761d1d6333ccdb05d3400da88fc0b61a4fe7.tar.bz2
Merge pull request #6826 from albert-github/feature/bug_626582
Bug 626582 - Function overloads are not actually sorted in member function list
Diffstat (limited to 'src')
-rw-r--r--src/memberlist.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/memberlist.cpp b/src/memberlist.cpp
index abb8aff..031b619 100644
--- a/src/memberlist.cpp
+++ b/src/memberlist.cpp
@@ -90,6 +90,7 @@ int MemberList::compareValues(const MemberDef *c1, const MemberDef *c2) const
return 1;
}
int cmp = qstricmp(c1->name(),c2->name());
+ if (cmp==0) cmp = qstricmp(c1->argsString(),c2->argsString());
return cmp!=0 ? cmp : c1->getDefLine()-c2->getDefLine();
}