summaryrefslogtreecommitdiffstats
path: root/src/filedef.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/filedef.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/filedef.cpp')
-rw-r--r--src/filedef.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp
index 6c5ee58..e4f6c86 100644
--- a/src/filedef.cpp
+++ b/src/filedef.cpp
@@ -312,14 +312,14 @@ void FileDefImpl::distributeMemberGroupDocumentation()
void FileDefImpl::findSectionsInDocumentation()
{
- docFindSections(documentation(),this,0,docFile());
+ docFindSections(documentation(),this,docFile());
if (m_memberGroupSDict)
{
MemberGroupSDict::Iterator mgli(*m_memberGroupSDict);
MemberGroup *mg;
for (;(mg=mgli.current());++mgli)
{
- mg->findSectionsInDocumentation();
+ mg->findSectionsInDocumentation(this);
}
}
@@ -329,7 +329,7 @@ void FileDefImpl::findSectionsInDocumentation()
{
if (ml->listType()&MemberListType_declarationLists)
{
- ml->findSectionsInDocumentation();
+ ml->findSectionsInDocumentation(this);
}
}
}