Integrated Priority column modification to the ColPriority object, from Task core.

This commit is contained in:
Thomas
2013-06-14 14:42:08 -04:00
committed by Paul Beckingham
parent 55a8b157b1
commit f39120dd73
6 changed files with 46 additions and 7 deletions

View File

@@ -323,3 +323,17 @@ void Column::render (std::vector <std::string>&, Task&, int, Color&)
}
////////////////////////////////////////////////////////////////////////////////
// No L10N.
bool Column::can_modify ()
{
return false;
}
////////////////////////////////////////////////////////////////////////////////
// No L10N.
std::string Column::modify (std::string& value)
{
throw std::string ("Virtual method Column::modify not overridden.");
}
////////////////////////////////////////////////////////////////////////////////