diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-19 04:18:56 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-19 04:18:56 -0500 |
commit | d2422f99e6edd17b86502b34be4fb618fe4c838d (patch) | |
tree | cbb8fb383ad6e7ca208d6f353a056c5640ffb3d8 /src/chain.cc | |
parent | aee05dc7b7099d4bff8827e293e6b1e3442b9cd9 (diff) | |
download | fork-ledger-d2422f99e6edd17b86502b34be4fb618fe4c838d.tar.gz fork-ledger-d2422f99e6edd17b86502b34be4fb618fe4c838d.tar.bz2 fork-ledger-d2422f99e6edd17b86502b34be4fb618fe4c838d.zip |
Allow the equity command to strip annotations
Diffstat (limited to 'src/chain.cc')
-rw-r--r-- | src/chain.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chain.cc b/src/chain.cc index 44b3db82..52d52f14 100644 --- a/src/chain.cc +++ b/src/chain.cc @@ -207,7 +207,7 @@ post_handler_ptr chain_post_handlers(post_handler_ptr base_handler, // day_of_week_posts is like period_posts, except that it reports // all the posts that fall on each subsequent day of the week. if (report.HANDLED(equity)) - handler.reset(new posts_as_equity(handler, expr)); + handler.reset(new posts_as_equity(handler, report, expr)); else if (report.HANDLED(subtotal)) handler.reset(new subtotal_posts(handler, expr)); } |