diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-02-22 10:29:25 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-02-22 10:29:25 (GMT) |
commit | f9b80aff6d20524dd0838aff12033fe3df66ba98 (patch) | |
tree | 7f8c4a08e72b3c07aa2ece55345fbb0e2ab0d872 /src/classdef.cpp | |
parent | 9b76c1a9bb7039962933aeef398bb7aa2f59c3a5 (diff) | |
download | Doxygen-f9b80aff6d20524dd0838aff12033fe3df66ba98.zip Doxygen-f9b80aff6d20524dd0838aff12033fe3df66ba98.tar.gz Doxygen-f9b80aff6d20524dd0838aff12033fe3df66ba98.tar.bz2 |
Bug 722619 - doxygen 1.8.6 sorts the contents of a namespace by group within the Class List
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 2443d42..a5b065f 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -3930,6 +3930,10 @@ void ClassDef::sortMemberLists() { if (ml->needsSorting()) { ml->sort(); ml->setNeedsSorting(FALSE); } } + if (m_impl->innerClasses) + { + m_impl->innerClasses->sort(); + } } int ClassDef::countMemberDeclarations(MemberListType lt,ClassDef *inheritedFrom, |