diff options
author | John Wiegley <johnw@newartisans.com> | 2004-07-31 02:36:20 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-07-31 02:36:20 -0400 |
commit | 3273be3dccbdd56035b588f5e7edc5a26544f841 (patch) | |
tree | 7f37c898e924b09485b434780ff253ba67ad3d1a /main.cc | |
parent | c06fad4291d385c7021dc1876a1d06d52a0508c1 (diff) | |
download | fork-ledger-3273be3dccbdd56035b588f5e7edc5a26544f841.tar.gz fork-ledger-3273be3dccbdd56035b588f5e7edc5a26544f841.tar.bz2 fork-ledger-3273be3dccbdd56035b588f5e7edc5a26544f841.zip |
restore sorting of register reports
Diffstat (limited to 'main.cc')
-rw-r--r-- | main.cc | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -59,13 +59,13 @@ unsigned int show_balances(std::ostream& out, return headlines; } -void balance_report(std::ostream& out, - item_t * top, - const node_t * predicate, - const node_t * sort_order, - const format_t& format, - const bool show_expanded, - const bool show_subtotals) +void balance_report(std::ostream& out, + item_t * top, + const node_t * predicate, + const node_t * sort_order, + const format_t& format, + const bool show_expanded, + const bool show_subtotals) { if (sort_order) top->sort(sort_order); |