diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-12 01:43:17 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-12 01:43:57 -0500 |
commit | c182b7051b4d1983d85b8cc8064371e149dcdd3b (patch) | |
tree | c3e49669d99c96ae7b66c9a50d602416ed5f1318 /src/report.h | |
parent | 95cc364961112a411b16ce410e682b76ca143703 (diff) | |
download | fork-ledger-c182b7051b4d1983d85b8cc8064371e149dcdd3b.tar.gz fork-ledger-c182b7051b4d1983d85b8cc8064371e149dcdd3b.tar.bz2 fork-ledger-c182b7051b4d1983d85b8cc8064371e149dcdd3b.zip |
Renamed the pricesdb command to pricedb
Diffstat (limited to 'src/report.h')
-rw-r--r-- | src/report.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/report.h b/src/report.h index 4c8813ed..5d4ee6fa 100644 --- a/src/report.h +++ b/src/report.h @@ -272,7 +272,7 @@ public: HANDLER(prepend_format_).report(out); HANDLER(price).report(out); HANDLER(prices_format_).report(out); - HANDLER(pricesdb_format_).report(out); + HANDLER(pricedb_format_).report(out); HANDLER(print_format_).report(out); HANDLER(quantity).report(out); HANDLER(quarterly).report(out); @@ -723,11 +723,11 @@ public: OPTION__(report_t, prices_format_, CTOR(report_t, prices_format_) { on(none, - "%-.9(date) %-8(account) %(justify(scrub(display_amount), 12, " + "%(date) %-8(account) %(justify(scrub(display_amount), 12, " " 2 + 9 + 8 + 12, true, color))\n"); }); - OPTION__(report_t, pricesdb_format_, CTOR(report_t, pricesdb_format_) { + OPTION__(report_t, pricedb_format_, CTOR(report_t, pricedb_format_) { on(none, "P %(datetime) %(account) %(scrub(display_amount))\n"); }); |