Was failing to copy over the xact's assigned_amount when copy constructing.

This commit is contained in:
John Wiegley 2009-02-09 14:54:58 -04:00
parent 3f7104e9be
commit 555e953dc1

View file

@ -98,6 +98,7 @@ public:
account(xact.account),
amount(xact.amount),
cost(xact.cost),
assigned_amount(xact.assigned_amount),
xdata_(xact.xdata_) // jww (2008-07-19): What are the copy semantics?
{
TRACE_CTOR(xact_t, "copy");