diff options
author | John Wiegley <johnw@newartisans.com> | 2006-03-03 09:45:44 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:28 -0400 |
commit | 96d6d62ad94082ca777c2c88b88e0346a5d00e65 (patch) | |
tree | b50a26a9c4c0cc0ab90b1772cc75368739501fa5 /reconcile.cc | |
parent | 7d3e45958e805f8acaf399ef14d53757979240ab (diff) | |
download | fork-ledger-96d6d62ad94082ca777c2c88b88e0346a5d00e65.tar.gz fork-ledger-96d6d62ad94082ca777c2c88b88e0346a5d00e65.tar.bz2 fork-ledger-96d6d62ad94082ca777c2c88b88e0346a5d00e65.zip |
Began support for improved commodity handling.
Diffstat (limited to 'reconcile.cc')
-rw-r--r-- | reconcile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reconcile.cc b/reconcile.cc index ec893c0b..e2f11198 100644 --- a/reconcile.cc +++ b/reconcile.cc @@ -71,7 +71,7 @@ void reconcile_transactions::flush() balance -= cleared_balance; if (balance.type >= value_t::BALANCE) throw error(std::string("Reconcile balance is not of the same commodity ('") + - b_comm.symbol + "' != '" + cb_comm.symbol + "')"); + b_comm.symbol() + "' != '" + cb_comm.symbol() + "')"); // If the amount to reconcile is the same as the pending balance, // then assume an exact match and return the results right away. |