mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
View
- Implemented status.default, status.short.
This commit is contained in:
parent
1506ee67f4
commit
5e851c4c98
5 changed files with 173 additions and 1 deletions
|
@ -37,6 +37,7 @@
|
|||
#include <ColProject.h>
|
||||
#include <ColRecur.h>
|
||||
//#include <ColStart.h>
|
||||
#include <ColStatus.h>
|
||||
#include <ColTags.h>
|
||||
//#include <ColUntil.h>
|
||||
#include <ColUUID.h>
|
||||
|
@ -78,6 +79,7 @@ Column* Column::factory (const std::string& name)
|
|||
else if (column_name == "project") column = new ColumnProject ();
|
||||
else if (column_name == "recur") column = new ColumnRecur ();
|
||||
// else if (column_name == "start") column = new ColumnStart ();
|
||||
else if (column_name == "status") column = new ColumnStatus ();
|
||||
else if (column_name == "tags") column = new ColumnTags ();
|
||||
// else if (column_name == "until") column = new ColumnUntil ();
|
||||
else if (column_name == "uuid") column = new ColumnUUID ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue