- Converted from OldDuration to Duration.
This commit is contained in:
Paul Beckingham 2014-05-28 23:49:32 -04:00
parent 5ee040f3a3
commit f36ffd91e3

View file

@ -29,7 +29,7 @@
#include <Context.h>
#include <ColDue.h>
#include <Date.h>
#include <OldDuration.h>
#include <Duration.h>
#include <text.h>
#include <i18n.h>
@ -43,7 +43,7 @@ ColumnDue::ColumnDue ()
Date now;
now += 125;
_examples.push_back (OldDuration (now - Date ()).formatCompact ());
_examples.push_back (Duration (now - Date ()).formatCompact ());
}
////////////////////////////////////////////////////////////////////////////////