summaryrefslogtreecommitdiffstats
path: root/src/filedef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-08-24 09:05:08 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-08-24 09:05:08 (GMT)
commit8578e6bead66cae44b61214b3a43f776ed008362 (patch)
tree960824dc207870a6fbe6cc9cbfc294d9ea0a481f /src/filedef.cpp
parent61e31b90708d501904665f85cfd3ea1b826b7afa (diff)
downloadDoxygen-8578e6bead66cae44b61214b3a43f776ed008362.zip
Doxygen-8578e6bead66cae44b61214b3a43f776ed008362.tar.gz
Doxygen-8578e6bead66cae44b61214b3a43f776ed008362.tar.bz2
issue #7973: C++ grouped functions in namespace have disapeard
- reverted some of the change that introduced the problem - fixed the original problem (#7216) in a different way
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r--src/filedef.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp
index 658023b..15fd1e5 100644
--- a/src/filedef.cpp
+++ b/src/filedef.cpp
@@ -2050,17 +2050,11 @@ void FileDefImpl::addMemberToList(MemberListType lt,MemberDef *md)
((ml->listType()&MemberListType_declarationLists) && sortBriefDocs) ||
((ml->listType()&MemberListType_documentationLists) && sortMemberDocs));
ml->append(md);
-#if 0
- if (ml->needsSorting())
- ml->inSort(md);
- else
- ml->append(md);
-#endif
if (lt&MemberListType_documentationLists)
{
ml->setInFile(TRUE);
}
- if (ml->listType()&MemberListType_declarationLists) md->setSectionList(ml);
+ if (ml->listType()&MemberListType_declarationLists) md->setSectionList(this,ml);
}
void FileDefImpl::sortMemberLists()