summaryrefslogtreecommitdiff
path: root/src/chain.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-06 06:20:07 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-06 06:20:07 -0400
commit39f9854e2c1f807f6e9c90d80e1eec2bf9b90017 (patch)
treeb72e9a1454b6721d59e3844d71a91880c94e2cae /src/chain.h
parent4197c8851120e5c5ac7426cdca209a49049e9363 (diff)
downloadfork-ledger-39f9854e2c1f807f6e9c90d80e1eec2bf9b90017.tar.gz
fork-ledger-39f9854e2c1f807f6e9c90d80e1eec2bf9b90017.tar.bz2
fork-ledger-39f9854e2c1f807f6e9c90d80e1eec2bf9b90017.zip
Reworked the way that <Rounding> entries are shown
Fixes #188 / 53BCED29-F3B9-4E02-9A35-6C739ABB9662
Diffstat (limited to 'src/chain.h')
-rw-r--r--src/chain.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/chain.h b/src/chain.h
index 59b04eb8..1a50a077 100644
--- a/src/chain.h
+++ b/src/chain.h
@@ -93,20 +93,20 @@ typedef shared_ptr<item_handler<account_t> > acct_handler_ptr;
class report_t;
post_handler_ptr
-chain_pre_post_handlers(report_t& report,
- post_handler_ptr base_handler);
+chain_pre_post_handlers(post_handler_ptr base_handler,
+ report_t& report);
post_handler_ptr
-chain_post_handlers(report_t& report,
- post_handler_ptr base_handler,
+chain_post_handlers(post_handler_ptr base_handler,
+ report_t& report,
bool for_accounts_report = false);
inline post_handler_ptr
-chain_handlers(report_t& report,
- post_handler_ptr handler,
+chain_handlers(post_handler_ptr handler,
+ report_t& report,
bool for_accounts_report = false) {
- handler = chain_post_handlers(report, handler, for_accounts_report);
- handler = chain_pre_post_handlers(report, handler);
+ handler = chain_post_handlers(handler, report, for_accounts_report);
+ handler = chain_pre_post_handlers(handler, report);
return handler;
}