ColID: Uses Column::renderInteger

This commit is contained in:
Paul Beckingham 2015-10-31 15:23:04 -04:00
parent 4837e9aa9d
commit 4c55b8c9af

View file

@ -77,7 +77,7 @@ void ColumnID::render (
Color& color)
{
if (task.id)
lines.push_back (color.colorize (rightJustify (task.id, width)));
renderInteger (lines, width, color, task.id);
else
lines.push_back (color.colorize (rightJustify ("-", width)));
}