diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 11:12:58 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 11:12:58 +0900 |
commit | 3b6ea7abb3d529f7805ed54071d597f01b578740 (patch) | |
tree | 20a720c78ff4f8838599f22bdd6afe43277758bf /src/docgroup.h | |
parent | 1ec16d649a01d369eecae2f1225c0ffa1caaf640 (diff) | |
download | doxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.tar.gz doxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.tar.bz2 doxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.zip |
Imported Upstream version 1.8.17upstream/1.8.17
Diffstat (limited to 'src/docgroup.h')
-rw-r--r-- | src/docgroup.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/docgroup.h b/src/docgroup.h index 4775d90..3ccef0d 100644 --- a/src/docgroup.h +++ b/src/docgroup.h @@ -16,7 +16,7 @@ #ifndef DOCGROUP_H #define DOCGROUP_H -#include <qstack.h> +#include <vector> #include <qstring.h> #include "membergroup.h" @@ -42,12 +42,12 @@ class DocGroup private: int findExistingGroup(int &groupId,const MemberGroupInfo *info); - int m_openCount; + int m_openCount = 0; QCString m_memberGroupHeader; - int m_memberGroupId; + int m_memberGroupId = 0; QCString m_memberGroupRelates; QCString m_memberGroupDocs; - QStack<Grouping> m_autoGroupStack; + std::vector<Grouping> m_autoGroupStack; QCString m_compoundName; }; |