From f36ffd91e30a079cbc92ef5dbeb2ea1948cf3e0e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 28 May 2014 23:49:32 -0400 Subject: [PATCH] ColDue - Converted from OldDuration to Duration. --- src/columns/ColDue.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/columns/ColDue.cpp b/src/columns/ColDue.cpp index e30c74be1..dd19d55ac 100644 --- a/src/columns/ColDue.cpp +++ b/src/columns/ColDue.cpp @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include @@ -43,7 +43,7 @@ ColumnDue::ColumnDue () Date now; now += 125; - _examples.push_back (OldDuration (now - Date ()).formatCompact ()); + _examples.push_back (Duration (now - Date ()).formatCompact ()); } ////////////////////////////////////////////////////////////////////////////////