- Implemented due.countdown.
- Fixed formatting bug in description.truncated.
- Fixed bug in start.indicator.
This commit is contained in:
Paul Beckingham
2011-05-02 23:43:41 -04:00
parent f9ab8f2a1c
commit d0cbf43478
6 changed files with 69 additions and 13 deletions

View File

@@ -99,15 +99,6 @@ void ColumnDate::measure (Task& task, int& minimum, int& maximum)
Date now;
minimum = maximum = Duration (now - date).format ().length ();
}
else if (_style == "short")
{
}
else if (_style == "countdown")
{
}
else if (_style == "remaining")
{
}
else
throw std::string ("Unrecognized column format '") + _type + "." + _style + "'";
}