From 405038471a83151ea68b24b86598ef4e8f842523 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 10 Apr 2004 07:08:52 +0000 Subject: [PATCH] changes --- reports.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reports.cc b/reports.cc index 73baca00..cc5b2403 100644 --- a/reports.cc +++ b/reports.cc @@ -231,11 +231,11 @@ void print_register(const std::string& acct_name, std::ostream& out, #endif out << " "; - out.width(30); + out.width(24); if ((*i)->desc.empty()) out << " "; else - out << std::left << truncated((*i)->desc, 30); + out << std::left << truncated((*i)->desc, 24); out << " "; // Always display the street value, if prices have been @@ -718,7 +718,7 @@ int main(int argc, char * argv[]) else if (command == "print") { if (show_sorted) main_ledger->sort(cmp_entry_date()); - main_ledger->print(std::cout, regexps, true); + main_ledger->print(std::cout, regexps, ! full_names); } else if (command == "equity") { equity_ledger(std::cout, regexps);