diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-20 20:55:24 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-20 20:55:24 -0400 |
commit | 7b6cc4c365758a293f914f7b3b61af78e4313d4a (patch) | |
tree | 5b0516b08b622cdb9be042bf8b14910b156e7f36 /src/filters.cc | |
parent | 96b652310cf8077926f241a15b853b0676bd3f3c (diff) | |
download | fork-ledger-7b6cc4c365758a293f914f7b3b61af78e4313d4a.tar.gz fork-ledger-7b6cc4c365758a293f914f7b3b61af78e4313d4a.tar.bz2 fork-ledger-7b6cc4c365758a293f914f7b3b61af78e4313d4a.zip |
Output budget even if no postings directly matched
Diffstat (limited to 'src/filters.cc')
-rw-r--r-- | src/filters.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/filters.cc b/src/filters.cc index d4fbae06..1dd410d3 100644 --- a/src/filters.cc +++ b/src/filters.cc @@ -1233,7 +1233,6 @@ void budget_posts::operator()(post_t& post) handle: if (post_in_budget && flags & BUDGET_BUDGETED) { report_budget_items(post.date()); - count++; item_handler<post_t>::operator()(post); } else if (! post_in_budget && flags & BUDGET_UNBUDGETED) { @@ -1243,7 +1242,7 @@ void budget_posts::operator()(post_t& post) void budget_posts::flush() { - if (count > 0) + if (flags & BUDGET_BUDGETED) report_budget_items(terminus); item_handler<post_t>::flush(); |