diff options
author | John Wiegley <johnw@newartisans.com> | 2010-02-04 19:47:49 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-02-05 00:00:38 -0500 |
commit | 6870c54644ba41fe360d43d27885ded46beac7c5 (patch) | |
tree | d40ddf017c4364b258c08eccc3ea53b5355eddb0 /src/balance.cc | |
parent | 9d61d3d621606f0158a048628c866a692465d886 (diff) | |
download | fork-ledger-6870c54644ba41fe360d43d27885ded46beac7c5.tar.gz fork-ledger-6870c54644ba41fe360d43d27885ded46beac7c5.tar.bz2 fork-ledger-6870c54644ba41fe360d43d27885ded46beac7c5.zip |
Refactored some comparison helper classes
Diffstat (limited to 'src/balance.cc')
-rw-r--r-- | src/balance.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/balance.cc b/src/balance.cc index 4ff51ffc..4fcc83fa 100644 --- a/src/balance.cc +++ b/src/balance.cc @@ -271,7 +271,8 @@ void balance_t::print(std::ostream& out, if (pair.second) sorted.push_back(&pair.second); - std::stable_sort(sorted.begin(), sorted.end(), compare_amount_commodities()); + std::stable_sort(sorted.begin(), sorted.end(), + commodity_t::compare_by_commodity()); foreach (const amount_t * amount, sorted) { int width; |