From 3667f06594a99dd6f0080747732e7eff639343b1 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 29 Sep 2003 07:19:54 +0000 Subject: *** empty log message *** --- balance.cc | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'balance.cc') diff --git a/balance.cc b/balance.cc index 2c9569a4..b3ecf593 100644 --- a/balance.cc +++ b/balance.cc @@ -43,7 +43,7 @@ void report_balances(std::ostream& out, std::vector& ledger, std::cout.width(10); std::cout << std::right << "Cleared" << std::endl; - for (std::map::iterator i = accounts.begin(); + for (accounts_iterator i = accounts.begin(); i != accounts.end(); i++) { if (! show_empty && ! (*i).second->future) @@ -108,13 +108,12 @@ void report_balances(std::ostream& out, std::vector& ledger, #if 0 if (regexps.empty()) { #endif - // jww (2003-09-29): Let `totals' be streamed - future_balance.print(std::cout); - std::cout << " "; - current_balance.print(std::cout); - std::cout << " "; - cleared_balance.print(std::cout); - std::cout << std::endl; + std::cout.width(10); + std::cout << std::right << future_balance << " "; + std::cout.width(10); + std::cout << std::right << current_balance << " "; + std::cout.width(10); + std::cout << std::right << cleared_balance << std::endl; #if 0 } #endif -- cgit v1.2.3