From 39f9854e2c1f807f6e9c90d80e1eec2bf9b90017 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 6 Jun 2010 06:20:07 -0400 Subject: Reworked the way that entries are shown Fixes #188 / 53BCED29-F3B9-4E02-9A35-6C739ABB9662 --- src/chain.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/chain.h') 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 > 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; } -- cgit v1.2.3