From 3302707768fea7e4350436f6fbcb822c9163491d Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 28 May 2014 23:47:14 -0400 Subject: [PATCH] CmdSummary - Converted from OldDuration to Duration. --- src/commands/CmdSummary.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/CmdSummary.cpp b/src/commands/CmdSummary.cpp index 2f5ddcd40..82320b27f 100644 --- a/src/commands/CmdSummary.cpp +++ b/src/commands/CmdSummary.cpp @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include @@ -159,7 +159,7 @@ int CmdSummary::execute (std::string& output) view.set (row, 1, countPending[i->first]); if (counter[i->first]) - view.set (row, 2, OldDuration ((int) (sumEntry[i->first] / (double)counter[i->first])).format ()); + view.set (row, 2, Duration ((int) (sumEntry[i->first] / (double)counter[i->first])).format ()); int c = countCompleted[i->first]; int p = countPending[i->first];