From ea2efe4c93f4971d626236b29c3445908d1590b7 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 28 May 2014 23:42:54 -0400 Subject: [PATCH] ColUDA - Converted from OldDuration to Duration. --- src/columns/ColUDA.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/columns/ColUDA.cpp b/src/columns/ColUDA.cpp index ac2dc47b6..5ac0bcedc 100644 --- a/src/columns/ColUDA.cpp +++ b/src/columns/ColUDA.cpp @@ -26,7 +26,7 @@ #include #include -#include +#include #include #include #include @@ -103,7 +103,7 @@ void ColumnUDA::measure (Task& task, unsigned int& minimum, unsigned int& maximu } else if (_type == "duration") { - minimum = maximum = utf8_width (OldDuration (value).formatCompact ()); + minimum = maximum = utf8_width (Duration (value).formatCompact ()); } else if (_type == "string") { @@ -156,7 +156,7 @@ void ColumnUDA::render ( lines.push_back ( color.colorize ( rightJustify ( - OldDuration (value).formatCompact (), + Duration (value).formatCompact (), width))); } else if (_type == "string")