- Implemented ColPriority, with 'default' and 'long' formats.
- Implemented ColProject 'parent' format.
This commit is contained in:
Paul Beckingham
2011-04-29 19:33:54 -04:00
parent dd1be996a6
commit 9fd819e3a0
9 changed files with 195 additions and 16 deletions

View File

@@ -58,6 +58,9 @@ void ColumnID::measure (Task& task, int& minimum, int& maximum)
else length = (int) log10 ((double) task.id); // Slow
minimum = maximum = length;
if (_style != "default")
throw std::string ("Unrecognized column format '") + _type + "." + _style + "'";
}
////////////////////////////////////////////////////////////////////////////////