summaryrefslogtreecommitdiff
path: root/src/filters.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filters.h')
-rw-r--r--src/filters.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/filters.h b/src/filters.h
index 4972b710..7252b057 100644
--- a/src/filters.h
+++ b/src/filters.h
@@ -790,13 +790,14 @@ class posts_as_equity : public subtotal_posts
post_t * last_post;
account_t * equity_account;
account_t * balance_account;
+ bool unround;
posts_as_equity();
public:
posts_as_equity(post_handler_ptr _handler, report_t& _report,
- expr_t& amount_expr)
- : subtotal_posts(_handler, amount_expr), report(_report) {
+ expr_t& amount_expr, bool _unround)
+ : subtotal_posts(_handler, amount_expr), report(_report), unround(_unround) {
create_accounts();
TRACE_CTOR(posts_as_equity, "post_handler_ptr, expr_t&");
}