diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-10 18:19:36 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-10 18:19:36 -0400 |
commit | a2efee0a8e895fc94e6eb4e048d32aa248b92080 (patch) | |
tree | a24ecdcae48add2ce5bafa3a3532aceb0e375159 /format.cc | |
parent | 8792945e76277cea96c13444fa5e4cad7f3ce6ee (diff) | |
download | fork-ledger-a2efee0a8e895fc94e6eb4e048d32aa248b92080.tar.gz fork-ledger-a2efee0a8e895fc94e6eb4e048d32aa248b92080.tar.bz2 fork-ledger-a2efee0a8e895fc94e6eb4e048d32aa248b92080.zip |
use polymorphism, instead of templates, for walking items
Diffstat (limited to 'format.cc')
-rw-r--r-- | format.cc | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -366,7 +366,7 @@ void format_transaction::operator()(transaction_t * xact) const xact->total += *xact; xact->index = last_xact ? last_xact->index + 1 : 0; - if (disp_pred_functor(xact)) { + if (disp_pred(xact)) { xact->dflags |= TRANSACTION_DISPLAYED; // This makes the assumption that transactions from a single entry @@ -407,7 +407,7 @@ void format_transaction::operator()(transaction_t * xact) const bool format_account::disp_subaccounts_p(const account_t * account, const item_predicate<account_t>& - disp_pred_functor, + disp_pred, const account_t *& to_show) { bool display = false; @@ -423,7 +423,7 @@ bool format_account::disp_subaccounts_p(const account_t * account, // expression is equivalent between a parent account and a lone // displayed child, then don't display the parent." - if (! (*i).second->total || ! disp_pred_functor((*i).second)) + if (! (*i).second->total || ! disp_pred((*i).second)) continue; if ((*i).second->total != account->total || counted > 0) { @@ -438,8 +438,7 @@ bool format_account::disp_subaccounts_p(const account_t * account, } bool format_account::display_account(const account_t * account, - const item_predicate<account_t>& - disp_pred_functor) + const item_predicate<account_t>& disp_pred) { // Never display the master account, or an account that has already // been displayed. @@ -454,10 +453,10 @@ bool format_account::display_account(const account_t * account, // the predicate. const account_t * account_to_show = NULL; - if (disp_subaccounts_p(account, disp_pred_functor, account_to_show)) + if (disp_subaccounts_p(account, disp_pred, account_to_show)) return true; - return ! account_to_show && disp_pred_functor(account); + return ! account_to_show && disp_pred(account); } } // namespace ledger |