diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2008-07-27 14:59:10 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2008-07-27 14:59:10 (GMT) |
commit | 6bf92c5d7efffb6a04c3ccbfc144ad944200fed2 (patch) | |
tree | 201e94696e0c1cb55ffa8fd45c97dfa1ac586f0f /src/marshal.cpp | |
parent | 956cf8647cb54a930d1d9c65fb01cc4d9498f2bd (diff) | |
download | Doxygen-6bf92c5d7efffb6a04c3ccbfc144ad944200fed2.zip Doxygen-6bf92c5d7efffb6a04c3ccbfc144ad944200fed2.tar.gz Doxygen-6bf92c5d7efffb6a04c3ccbfc144ad944200fed2.tar.bz2 |
Release-1.5.6-20080727
Diffstat (limited to 'src/marshal.cpp')
-rw-r--r-- | src/marshal.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/marshal.cpp b/src/marshal.cpp index 8983e27..803c53b 100644 --- a/src/marshal.cpp +++ b/src/marshal.cpp @@ -395,7 +395,7 @@ void marshalEntry(StorageIntf *s,Entry *e) marshalInt(s,e->inbodyLine); marshalQCString(s,e->inbodyFile); marshalQCString(s,e->relates); - marshalBool(s,e->relatesDup); + marshalInt(s,e->relatesType); marshalQCString(s,e->read); marshalQCString(s,e->write); marshalQCString(s,e->inside); @@ -788,7 +788,7 @@ Entry * unmarshalEntry(StorageIntf *s) e->inbodyLine = unmarshalInt(s); e->inbodyFile = unmarshalQCString(s); e->relates = unmarshalQCString(s); - e->relatesDup = unmarshalBool(s); + e->relatesType = (RelatesType)unmarshalInt(s); e->read = unmarshalQCString(s); e->write = unmarshalQCString(s); e->inside = unmarshalQCString(s); |