From b609cdb8a0fa0db64af8f0d22df7d7a6ce587ab8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 9 Oct 2010 12:27:57 -0400 Subject: [PATCH] Urgency - Removed the urgency rating from the info report. Otherwise, we will need to explain it, and without the corresponding new next report, what can we say? It will be reenabled later. --- src/report.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/report.cpp b/src/report.cpp index 64ce5725a..6f9bfee15 100644 --- a/src/report.cpp +++ b/src/report.cpp @@ -626,9 +626,10 @@ int handleInfo (std::string &outs) } // Task::urgency - row = table.addRow (); - table.addCell (row, 0, "Urgency"); - table.addCell (row, 1, task->urgency ()); + // TODO Enable this later. This was for testing. + //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"))