summaryrefslogtreecommitdiffstats
path: root/src/classdef.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/classdef.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/classdef.cpp')
-rw-r--r--src/classdef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index 5dee0dc..c3cd3ee 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -4416,7 +4416,7 @@ void ClassDefImpl::addMemberToList(MemberListType lt,MemberDef *md,bool isBrief)
ml->append(md);
// for members in the declaration lists we set the section, needed for member grouping
- if ((ml->listType()&MemberListType_detailedLists)==0) md->setSectionList(ml);
+ if ((ml->listType()&MemberListType_detailedLists)==0) md->setSectionList(this,ml);
}
void ClassDefImpl::sortMemberLists()