diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-17 21:30:07 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-17 21:51:51 -0500 |
commit | c28d828d8e24fe637a74674bedc9bc0cbdabca1c (patch) | |
tree | 5b549d4af694193d950162890ae1c5150a24b73a /src/report.cc | |
parent | 4bc830a2c526cad108695104503f377997e14e7e (diff) | |
download | fork-ledger-c28d828d8e24fe637a74674bedc9bc0cbdabca1c.tar.gz fork-ledger-c28d828d8e24fe637a74674bedc9bc0cbdabca1c.tar.bz2 fork-ledger-c28d828d8e24fe637a74674bedc9bc0cbdabca1c.zip |
Renamed date_interval_t::end to finish
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/report.cc b/src/report.cc index 267a4a3d..efe162e2 100644 --- a/src/report.cc +++ b/src/report.cc @@ -125,9 +125,9 @@ void report_t::normalize_options(const string& verb) "date>=[" + to_iso_extended_string(*interval.start) + "]"; HANDLER(limit_).on(string("?normalize"), predicate); } - if (! HANDLED(end_) && interval.end) { + if (! HANDLED(end_) && interval.finish) { string predicate = - "date<[" + to_iso_extended_string(*interval.end) + "]"; + "date<[" + to_iso_extended_string(*interval.finish) + "]"; HANDLER(limit_).on(string("?normalize"), predicate); } |