diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-04 17:46:13 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-04 17:46:13 (GMT) |
commit | c6b7c8e7b6760ebfafa40a71eea48d1b46dec477 (patch) | |
tree | 85b63b795f663bb71c26c647948a085a3849177d /src/entry.cpp | |
parent | 832e08dcc70203d84f75249583a95fa172492aa2 (diff) | |
download | Doxygen-c6b7c8e7b6760ebfafa40a71eea48d1b46dec477.zip Doxygen-c6b7c8e7b6760ebfafa40a71eea48d1b46dec477.tar.gz Doxygen-c6b7c8e7b6760ebfafa40a71eea48d1b46dec477.tar.bz2 |
Release-1.1.4
Diffstat (limited to 'src/entry.cpp')
-rw-r--r-- | src/entry.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/entry.cpp b/src/entry.cpp index e3aaa8d..2638051 100644 --- a/src/entry.cpp +++ b/src/entry.cpp @@ -69,8 +69,9 @@ Entry::Entry(const Entry &e) mGrpId = e.mGrpId; bodyLine = e.bodyLine; endBodyLine = e.endBodyLine; - inLine = e.inLine; + memSpec = e.memSpec; initializer = e.initializer; + initLines = e.initLines; sublist = new QList<Entry>; sublist->setAutoDelete(TRUE); extends = new QList<BaseInfo>; @@ -207,6 +208,7 @@ void Entry::reset() scopeSpec.resize(0); memberSpec.resize(0); initializer.resize(0); + initLines = -1; startLine = 1; bodyLine = -1; endBodyLine = -1; @@ -217,7 +219,7 @@ void Entry::reset() slot = FALSE; stat = FALSE; proto = FALSE; - inLine = FALSE; + memSpec = 0; subGrouping = TRUE; protection = Public; sublist->clear(); |