diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-12-02 14:54:35 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-12-02 14:54:35 (GMT) |
commit | d2d57f02eabbe81ea976f31e2af66c80c01a2a0b (patch) | |
tree | 0af428e60324ef94f5e04cee664374d5907c36ac /src/entry.cpp | |
parent | d384b6c7459cffcbb30bdd0ab06bde6f0cd12688 (diff) | |
download | Doxygen-d2d57f02eabbe81ea976f31e2af66c80c01a2a0b.zip Doxygen-d2d57f02eabbe81ea976f31e2af66c80c01a2a0b.tar.gz Doxygen-d2d57f02eabbe81ea976f31e2af66c80c01a2a0b.tar.bz2 |
Release-1.5.1-20061202
Diffstat (limited to 'src/entry.cpp')
-rw-r--r-- | src/entry.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/entry.cpp b/src/entry.cpp index 1aa6b6d..0d0cb4f 100644 --- a/src/entry.cpp +++ b/src/entry.cpp @@ -1,6 +1,6 @@ /****************************************************************************** * - * + * $Id$ * * Copyright (C) 1997-2006 by Dimitri van Heesch. * @@ -89,7 +89,7 @@ Entry::Entry(const Entry &e) mGrpId = e.mGrpId; bodyLine = e.bodyLine; endBodyLine = e.endBodyLine; - memSpec = e.memSpec; + spec = e.spec; initializer = e.initializer; initLines = e.initLines; callGraph = e.callGraph; @@ -241,7 +241,7 @@ void Entry::reset() stat = FALSE; proto = FALSE; explicitExternal = FALSE; - memSpec = 0; + spec = 0; objc = FALSE; hidden = FALSE; subGrouping = TRUE; @@ -343,7 +343,7 @@ static bool saveEntry(Entry *e,FileStorage *f) marshalUInt(f,HEADER); marshalInt(f,(int)e->protection); marshalInt(f,(int)e->mtype); - marshalInt(f,e->memSpec); + marshalInt(f,e->spec); marshalInt(f,e->initLines); marshalBool(f,e->stat); marshalBool(f,e->explicitExternal); @@ -401,7 +401,7 @@ static bool loadEntry(Entry *e,FileStorage *f) } e->protection = (Protection)unmarshalInt(f); e->mtype = (MethodTypes)unmarshalInt(f); - e->memSpec = unmarshalInt(f); + e->spec = unmarshalInt(f); e->initLines = unmarshalInt(f); e->stat = unmarshalBool(f); e->explicitExternal = unmarshalBool(f); |