diff options
author | John Wiegley <johnw@newartisans.com> | 2009-06-21 18:34:23 +0100 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-06-21 18:34:23 +0100 |
commit | ec62e709974b160194fe46b4d7a4967977b07d18 (patch) | |
tree | b096fbb62b2082cd687a3b9c70fc22a748d568b7 | |
parent | ba0dd89356376653dbc6b4b621f910772789a054 (diff) | |
download | fork-ledger-ec62e709974b160194fe46b4d7a4967977b07d18.tar.gz fork-ledger-ec62e709974b160194fe46b4d7a4967977b07d18.tar.bz2 fork-ledger-ec62e709974b160194fe46b4d7a4967977b07d18.zip |
Whitespace reformatting
-rw-r--r-- | src/report.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/report.h b/src/report.h index c091487b..da1a7c5a 100644 --- a/src/report.h +++ b/src/report.h @@ -334,8 +334,8 @@ public: OPTION(report_t, anon); OPTION_(report_t, average, DO() { // -A - parent->HANDLER(display_total_).set_expr(string("--average"), - "total_expr/count"); + parent->HANDLER(display_total_) + .set_expr(string("--average"), "total_expr/count"); }); OPTION__(report_t, balance_format_, CTOR(report_t, balance_format_) { @@ -425,8 +425,8 @@ public: }); OPTION_(report_t, deviation, DO() { // -D - parent->HANDLER(display_total_).set_expr(string("--deviation"), - "amount_expr-total_expr/count"); + parent->HANDLER(display_total_) + .set_expr(string("--deviation"), "amount_expr-total_expr/count"); }); OPTION__ |