diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-15 22:55:29 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-15 22:57:23 -0400 |
commit | 14ffc2b31a38a7fdd25bd93fe21d17132b16062a (patch) | |
tree | 5188fc520c8bf3af25c7b6a266fb485dd0e0e2fb /src/report.cc | |
parent | e32129b25cbea725208bb4212edb6caf1cf9bbf3 (diff) | |
download | fork-ledger-14ffc2b31a38a7fdd25bd93fe21d17132b16062a.tar.gz fork-ledger-14ffc2b31a38a7fdd25bd93fe21d17132b16062a.tar.bz2 fork-ledger-14ffc2b31a38a7fdd25bd93fe21d17132b16062a.zip |
Don't apply all filters for account-wise reports
This creates its own problems; instead, only most are used.
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/report.cc b/src/report.cc index 49623eda..343f0110 100644 --- a/src/report.cc +++ b/src/report.cc @@ -114,7 +114,7 @@ void report_t::sum_all_accounts() journal_xacts_iterator walker(*session.journal.get()); pass_down_xacts(chain_xact_handlers - (*this, xact_handler_ptr(new set_account_value(expr))), + (*this, xact_handler_ptr(new set_account_value(expr)), true), walker); expr.mark_uncompiled(); // recompile, throw away xact_t bindings |