summaryrefslogtreecommitdiff
path: root/src/balance.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-02-04 19:47:49 -0500
committerJohn Wiegley <johnw@newartisans.com>2010-02-05 00:00:38 -0500
commit6870c54644ba41fe360d43d27885ded46beac7c5 (patch)
treed40ddf017c4364b258c08eccc3ea53b5355eddb0 /src/balance.cc
parent9d61d3d621606f0158a048628c866a692465d886 (diff)
downloadfork-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.cc3
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;