From 2d66324cb2241a7894b9ee18cfd4fb9b4189c78a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 29 Jun 2008 15:05:46 -0400 Subject: [PATCH] - Added " ago" to the info report task age. --- src/task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/task.cpp b/src/task.cpp index da33b5858..ff23146fc 100644 --- a/src/task.cpp +++ b/src/task.cpp @@ -952,7 +952,7 @@ void handleInfo (const TDB& tdb, T& task, Config& conf) formatTimeDeltaDays (age, (time_t) (now - dt)); } - table.addCell (row, 1, entry + " (" + age + ")"); + table.addCell (row, 1, entry + " (" + age + " ago)"); } }