diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-22 01:29:34 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-22 01:29:34 -0400 |
commit | 348aae747806d74302e85255e896c407adad3ca4 (patch) | |
tree | 2c08c17251f2b3901ca94e6375ccb94178ed6d73 /src | |
parent | ff6878334882c1568e0f9147a428e0e613f7f75b (diff) | |
download | fork-ledger-348aae747806d74302e85255e896c407adad3ca4.tar.gz fork-ledger-348aae747806d74302e85255e896c407adad3ca4.tar.bz2 fork-ledger-348aae747806d74302e85255e896c407adad3ca4.zip |
Removed unused --totals option
This option was for outputting <total> elements in 2.x's XML output.
Diffstat (limited to 'src')
-rw-r--r-- | src/report.cc | 1 | ||||
-rw-r--r-- | src/report.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/report.cc b/src/report.cc index 3178755f..afd8cc11 100644 --- a/src/report.cc +++ b/src/report.cc @@ -485,7 +485,6 @@ option_t<report_t> * report_t::lookup_option(const char * p) else OPT(tail_); else OPT(total_); else OPT(total_data); - else OPT(totals); else OPT(truncate_); else OPT(total_width_); break; diff --git a/src/report.h b/src/report.h index bc87ac07..6806dc62 100644 --- a/src/report.h +++ b/src/report.h @@ -563,8 +563,6 @@ public: parent->HANDLER(format_).on_with(parent->HANDLER(plot_total_format_).value); }); - OPTION(report_t, totals); - OPTION_(report_t, truncate_, DO() { #if 0 string style(args[0].to_string()); |