diff options
author | Rahix <rahix@rahix.de> | 2020-05-12 18:41:33 +0200 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2020-07-21 14:50:01 -0700 |
commit | f1e8a0a42f9b0d2b11201a2b67bea6f60e37c76f (patch) | |
tree | 229cbeb40aab69a3889e479e6a8477baa495acdd /src/filters.cc | |
parent | 5e10e0c94aa764e3933e19bd40b7cd35ff6d37f0 (diff) | |
download | ledger-f1e8a0a42f9b0d2b11201a2b67bea6f60e37c76f.tar.gz ledger-f1e8a0a42f9b0d2b11201a2b67bea6f60e37c76f.tar.bz2 ledger-f1e8a0a42f9b0d2b11201a2b67bea6f60e37c76f.zip |
collapse_posts: Add a collapse_depth attribute
Replace the hardcoded depth of 3 with a class attribute that can later
be set from a commandline argument.
Diffstat (limited to 'src/filters.cc')
-rw-r--r-- | src/filters.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/filters.cc b/src/filters.cc index 6b91aab4..3e481139 100644 --- a/src/filters.cc +++ b/src/filters.cc @@ -472,12 +472,10 @@ void collapse_posts::report_subtotal() value_t& collapse_posts::find_totals(account_t* account) { - unsigned short depth=3; - - if (depth == 0) + if (collapse_depth == 0) return totals[_("<Total>")]; - if (account->depth == depth) + if (account->depth == collapse_depth) return totals[account->fullname()]; //else recurse |