Fixed copy constructors for transactions

This commit is contained in:
John Wiegley 2009-11-01 21:14:34 -05:00
parent caff01ba75
commit 52d1441646

View file

@ -39,8 +39,8 @@
namespace ledger { namespace ledger {
xact_base_t::xact_base_t(const xact_base_t&) xact_base_t::xact_base_t(const xact_base_t& xact_base)
: item_t(), journal(NULL) : item_t(xact_base), journal(xact_base.journal)
{ {
TRACE_CTOR(xact_base_t, "copy"); TRACE_CTOR(xact_base_t, "copy");
} }