summaryrefslogtreecommitdiff
path: root/src/item.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-02 19:17:43 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-02 19:17:43 -0500
commit46e46dd5a337c009391583a679d6172cf4f5aa42 (patch)
tree67009e7d8681685afec8b09dcb7930570492e36f /src/item.h
parenta048afc8a34d3a1c1a6372ef6b7cc373779bcac0 (diff)
parentd6790072eff9cb2a938ee9ed204263ee277a6874 (diff)
downloadfork-ledger-46e46dd5a337c009391583a679d6172cf4f5aa42.tar.gz
fork-ledger-46e46dd5a337c009391583a679d6172cf4f5aa42.tar.bz2
fork-ledger-46e46dd5a337c009391583a679d6172cf4f5aa42.zip
Merge branch 'next'
Diffstat (limited to 'src/item.h')
-rw-r--r--src/item.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/item.h b/src/item.h
index 28eb3f80..b65d482a 100644
--- a/src/item.h
+++ b/src/item.h
@@ -143,6 +143,7 @@ public:
_date_eff = item._date_eff;
note = item.note;
pos = item.pos;
+ metadata = item.metadata;
}
virtual bool operator==(const item_t& xact) {
@@ -206,8 +207,8 @@ private:
ar & _date;
ar & _date_eff;
ar & note;
- ar & metadata;
ar & pos;
+ ar & metadata;
}
#endif // HAVE_BOOST_SERIALIZATION
};