summaryrefslogtreecommitdiffstats
path: root/src/groupdef.cpp
diff options
context:
space:
mode:
authorDavid Hebbeker <david@hebbeker.info>2020-04-26 10:08:40 (GMT)
committerDavid Hebbeker <david@hebbeker.info>2020-05-02 17:04:53 (GMT)
commit0c28706a1e82a4ad6021ce016bc5937698cbbd3c (patch)
tree648f4261e2f6ff7a05a5388123c6e2909b070f13 /src/groupdef.cpp
parent534cf6a4f2098e96b15bb49f41d93d6e991bd3f9 (diff)
downloadDoxygen-0c28706a1e82a4ad6021ce016bc5937698cbbd3c.zip
Doxygen-0c28706a1e82a4ad6021ce016bc5937698cbbd3c.tar.gz
Doxygen-0c28706a1e82a4ad6021ce016bc5937698cbbd3c.tar.bz2
Replaced DirList::count() by DirList::size().
(cherry picked from commit 38d38b225f1e8698e5813e16356e8929fcec1e81)
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r--src/groupdef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp
index 3e95afc..bff97e0 100644
--- a/src/groupdef.cpp
+++ b/src/groupdef.cpp
@@ -1047,7 +1047,7 @@ void GroupDefImpl::writeNestedGroups(OutputList &ol,const QCString &title)
void GroupDefImpl::writeDirs(OutputList &ol,const QCString &title)
{
// write list of directories
- if (m_dirList->count()>0)
+ if (m_dirList->size()>0)
{
ol.startMemberHeader("dirs");
ol.parseText(title);
@@ -1183,7 +1183,7 @@ void GroupDefImpl::writeSummaryLinks(OutputList &ol) const
(lde->kind()==LayoutDocEntry::GroupNamespaces && m_namespaceSDict->declVisible()) ||
(lde->kind()==LayoutDocEntry::GroupFiles && m_fileList->count()>0) ||
(lde->kind()==LayoutDocEntry::GroupNestedGroups && m_groupList->count()>0) ||
- (lde->kind()==LayoutDocEntry::GroupDirs && m_dirList->count()>0)
+ (lde->kind()==LayoutDocEntry::GroupDirs && m_dirList->size()>0)
)
{
LayoutDocEntrySection *ls = (LayoutDocEntrySection*)lde;