summaryrefslogtreecommitdiffstats
path: root/src/groupdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-26 18:41:47 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-08-26 18:41:47 (GMT)
commit8723f80b378bdd1c91ce3736ecece3ea06b89ff5 (patch)
tree9d0d8441fea0a83c68fb727ef3d91e544d7ee821 /src/groupdef.cpp
parentb409bd0846b55a082919b757a310ce3873366341 (diff)
downloadDoxygen-8723f80b378bdd1c91ce3736ecece3ea06b89ff5.zip
Doxygen-8723f80b378bdd1c91ce3736ecece3ea06b89ff5.tar.gz
Doxygen-8723f80b378bdd1c91ce3736ecece3ea06b89ff5.tar.bz2
issue #7216: non-const getGroupDef() called on aliased member (cleanup + null pointer fix)
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r--src/groupdef.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp
index 9baf0aa..e1fab11 100644
--- a/src/groupdef.cpp
+++ b/src/groupdef.cpp
@@ -236,12 +236,12 @@ void GroupDefImpl::distributeMemberGroupDocumentation()
void GroupDefImpl::findSectionsInDocumentation()
{
- docFindSections(documentation(),this,0,docFile());
+ docFindSections(documentation(),this,docFile());
MemberGroupSDict::Iterator mgli(*memberGroupSDict);
MemberGroup *mg;
for (;(mg=mgli.current());++mgli)
{
- mg->findSectionsInDocumentation();
+ mg->findSectionsInDocumentation(this);
}
QListIterator<MemberList> mli(m_memberLists);
@@ -250,7 +250,7 @@ void GroupDefImpl::findSectionsInDocumentation()
{
if (ml->listType()&MemberListType_declarationLists)
{
- ml->findSectionsInDocumentation();
+ ml->findSectionsInDocumentation(this);
}
}
}