diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-19 15:05:53 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-19 15:05:53 -0400 |
commit | 8af4451472ad8c788e55b6f59e2964c6c33c50a0 (patch) | |
tree | 0e2dd2e68cef6757d8112304a57e0348095148d8 /src | |
parent | 3dd0e74bbf07c40e08293b84997b1ff8dce33c65 (diff) | |
download | fork-ledger-8af4451472ad8c788e55b6f59e2964c6c33c50a0.tar.gz fork-ledger-8af4451472ad8c788e55b6f59e2964c6c33c50a0.tar.bz2 fork-ledger-8af4451472ad8c788e55b6f59e2964c6c33c50a0.zip |
Use the 'market' function, not 'market_value'
Diffstat (limited to 'src')
-rw-r--r-- | src/report.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/report.h b/src/report.h index f49475f2..0e66ec75 100644 --- a/src/report.h +++ b/src/report.h @@ -383,8 +383,8 @@ public: OPTION_(report_t, market, DO() { // -V parent->HANDLER(revalued).on_only(); - parent->HANDLER(display_amount_).set_expr("market_value(amount_expr)"); - parent->HANDLER(display_total_).set_expr("market_value(total_expr)"); + parent->HANDLER(display_amount_).set_expr("market(amount_expr)"); + parent->HANDLER(display_total_).set_expr("market(total_expr)"); }); OPTION_(report_t, monthly, DO() { // -M |