diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-09 14:54:58 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-09 14:54:58 -0400 |
commit | 555e953dc17038039cf0bc253ef74b961de0b0f2 (patch) | |
tree | 293277d0aca602b97f818fb3a3c77824ed5a2626 /src/xact.h | |
parent | 3f7104e9bec0bbbf437ef77ebaed6e361099fa40 (diff) | |
download | fork-ledger-555e953dc17038039cf0bc253ef74b961de0b0f2.tar.gz fork-ledger-555e953dc17038039cf0bc253ef74b961de0b0f2.tar.bz2 fork-ledger-555e953dc17038039cf0bc253ef74b961de0b0f2.zip |
Was failing to copy over the xact's assigned_amount when copy constructing.
Diffstat (limited to 'src/xact.h')
-rw-r--r-- | src/xact.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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"); |