Corrected a column-wise formatting issue

This commit is contained in:
John Wiegley 2009-02-20 14:14:58 -04:00
parent d167724bac
commit a181ac52d3

View file

@ -346,7 +346,7 @@ string format_t::truncate(const unistring& ustr, std::size_t width,
// Even abbreviated its too big to show the last account, so // Even abbreviated its too big to show the last account, so
// abbreviate all but the last and truncate at the beginning. // abbreviate all but the last and truncate at the beginning.
unistring temp(result.str()); unistring temp(result.str());
buf << ".." << temp.extract(temp.length() - width, width); buf << ".." << temp.extract(temp.length() - width - 2, width - 2);
} else { } else {
buf << result.str(); buf << result.str();
} }
@ -356,7 +356,7 @@ string format_t::truncate(const unistring& ustr, std::size_t width,
case TRUNCATE_TRAILING: case TRUNCATE_TRAILING:
// This method truncates at the end (the default). // This method truncates at the end (the default).
buf << ustr.extract(0, width -2) << ".."; buf << ustr.extract(0, width - 2) << "..";
break; break;
} }