Feature - urgency

- Added the urgency value to the 'info' report.
This commit is contained in:
Paul Beckingham 2010-08-06 19:04:56 -04:00
parent d8544181ce
commit 2c858c6988

View file

@ -611,6 +611,11 @@ int handleInfo (std::string &outs)
table.addCell (row, 1, color);
}
// Task::urgency
row = table.addRow ();
table.addCell (row, 0, "Urgency");
table.addCell (row, 1, task->urgency ());
// If an alternating row color is specified, notify the table.
if (context.config.getBoolean ("color") || context.config.getBoolean ("_forcecolor"))
{