- Fixed Bug #723, which displayed a misleading message when the output was
  truncated to a page.
This commit is contained in:
Paul Beckingham 2011-03-26 10:58:15 -04:00
parent a1d47e9509
commit 3cccdf722e
3 changed files with 5 additions and 3 deletions

View file

@ -677,7 +677,7 @@ int handleCustomReport (const std::string& report, std::string& outs)
out << ", " << maxrows << " shown";
if (maxlines && maxlines < table.rowCount ())
out << ", truncated to " << maxlines - table_header << " tasks";
out << ", truncated to " << maxlines - table_header << " lines";
out << std::endl;
}