From 2c858c6988d7beeeacb90f77c838233cfeb4c424 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 6 Aug 2010 19:04:56 -0400 Subject: [PATCH] Feature - urgency - Added the urgency value to the 'info' report. --- src/report.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/report.cpp b/src/report.cpp index d6f1c65c7..fee8d66e9 100644 --- a/src/report.cpp +++ b/src/report.cpp @@ -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")) {