diff options
author | John Wiegley <johnw@newartisans.com> | 2004-04-10 07:08:52 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-04-10 07:08:52 +0000 |
commit | 405038471a83151ea68b24b86598ef4e8f842523 (patch) | |
tree | ac19a4d0af219cb5303763de89c5b9ccd5531a72 /reports.cc | |
parent | c0390330ef1a7cee1bbbfbb0aa966de23385805b (diff) | |
download | ledger-405038471a83151ea68b24b86598ef4e8f842523.tar.gz ledger-405038471a83151ea68b24b86598ef4e8f842523.tar.bz2 ledger-405038471a83151ea68b24b86598ef4e8f842523.zip |
changes
Diffstat (limited to 'reports.cc')
-rw-r--r-- | reports.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |