diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-15 21:05:59 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-15 21:05:59 -0400 |
commit | e861c312ac4685c7a9c967312cffeb7388d3be1e (patch) | |
tree | b64db3c16b91b61e32023eebb3751d0686b96c59 /src/output.h | |
parent | bfa6a643a1317515e10cca2170463f941e6d0f10 (diff) | |
download | fork-ledger-e861c312ac4685c7a9c967312cffeb7388d3be1e.tar.gz fork-ledger-e861c312ac4685c7a9c967312cffeb7388d3be1e.tar.bz2 fork-ledger-e861c312ac4685c7a9c967312cffeb7388d3be1e.zip |
The "xact" variable now returns null for accounts
Diffstat (limited to 'src/output.h')
-rw-r--r-- | src/output.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/output.h b/src/output.h index 188013c3..e68e51f3 100644 --- a/src/output.h +++ b/src/output.h @@ -173,7 +173,9 @@ public: bool should_display(account_t& account) { if (! disp_pred.predicate && report.HANDLED(display_)) disp_pred.predicate.parse(report.HANDLER(display_).str()); - return disp_pred(account); + + bind_scope_t bound_scope(report, account); + return disp_pred(bound_scope); } virtual void flush(); |