From 14b36a5dc684fc29de4f067e5d03806e0dd501a9 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 12 Aug 2015 11:36:38 -0400 Subject: [PATCH] ColScheduled: Duration replaced by ISO8601p --- src/columns/ColScheduled.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/columns/ColScheduled.cpp b/src/columns/ColScheduled.cpp index 4234eeb15..dfd16a30c 100644 --- a/src/columns/ColScheduled.cpp +++ b/src/columns/ColScheduled.cpp @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include @@ -44,7 +44,7 @@ ColumnScheduled::ColumnScheduled () Date now; now += 125; - _examples = {Duration (now - Date ()).formatCompact ()}; + _examples = {ISO8601p (now - Date ()).format ()}; } ////////////////////////////////////////////////////////////////////////////////