diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-09 17:38:05 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-09 17:38:05 -0400 |
commit | 6e6246c927ab0d39dfd65f20e51c3f1b036c8ea9 (patch) | |
tree | 20ad7233464142934da2c5d958edc8c0bdae65af /format.h | |
parent | 05b2cc46fdf6accd2ecbdc3c1ce86829bc7bfa68 (diff) | |
download | fork-ledger-6e6246c927ab0d39dfd65f20e51c3f1b036c8ea9.tar.gz fork-ledger-6e6246c927ab0d39dfd65f20e51c3f1b036c8ea9.tar.bz2 fork-ledger-6e6246c927ab0d39dfd65f20e51c3f1b036c8ea9.zip |
more fixes
Diffstat (limited to 'format.h')
-rw-r--r-- | format.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -208,6 +208,11 @@ class format_account const item_predicate<account_t>& disp_pred_functor, const account_t *& to_show); + static bool disp_subaccounts_p(const account_t * account) { + const account_t * temp; + return disp_subaccounts_p(account, item_predicate<account_t>(NULL), temp); + } + static bool display_account(const account_t * account, const item_predicate<account_t>& disp_pred_functor); |