diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-07 17:46:10 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-07 17:46:10 -0400 |
commit | 767014cb9fe60934d0e980d0bb382747b3d300ab (patch) | |
tree | 75c562f1e828d87f198f2d8fa7d53e372d0c5d7b | |
parent | 96e11c59370df5070d0385454ce22329d208c9d8 (diff) | |
download | fork-ledger-767014cb9fe60934d0e980d0bb382747b3d300ab.tar.gz fork-ledger-767014cb9fe60934d0e980d0bb382747b3d300ab.tar.bz2 fork-ledger-767014cb9fe60934d0e980d0bb382747b3d300ab.zip |
Fixed a problem with -E wasn't displaying the final transaction.
-rw-r--r-- | src/filters.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/filters.h b/src/filters.h index 748622ac..97584b0a 100644 --- a/src/filters.h +++ b/src/filters.h @@ -394,8 +394,7 @@ public: } virtual void flush() { - if (subtotal) - report_subtotal(); + report_subtotal(); item_handler<xact_t>::flush(); } |