Feedback: Duration replaced by ISO8601p

This commit is contained in:
Paul Beckingham 2015-08-12 08:21:13 -04:00
parent dffb1abdf1
commit dbcd5dbe1d

View file

@ -33,7 +33,7 @@
#include <stdlib.h>
#include <inttypes.h>
#include <Context.h>
#include <Duration.h>
#include <ISO8601.h>
#include <main.h>
#include <text.h>
#include <util.h>
@ -205,7 +205,7 @@ std::string taskInfoDifferences (
else if (name == "start")
{
out << format (STRING_FEEDBACK_ATT_DEL_DUR, ucFirst (name),
Duration (current_timestamp - last_timestamp).formatPrecise ())
ISO8601p (current_timestamp - last_timestamp).format ())
<< "\n";
}
else