mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
ColTypeNumeric: Delegated type to base class
This commit is contained in:
parent
9ea69ea802
commit
4837e9aa9d
4 changed files with 1 additions and 3 deletions
|
@ -37,7 +37,6 @@ extern Context context;
|
|||
ColumnID::ColumnID ()
|
||||
{
|
||||
_name = "id";
|
||||
_type = "numeric";
|
||||
_style = "number";
|
||||
_label = STRING_COLUMN_LABEL_ID;
|
||||
_modifiable = false;
|
||||
|
|
|
@ -37,7 +37,6 @@ extern Context context;
|
|||
ColumnIMask::ColumnIMask ()
|
||||
{
|
||||
_name = "imask";
|
||||
_type = "numeric";
|
||||
_style = "number";
|
||||
_label = STRING_COLUMN_LABEL_MASK_IDX;
|
||||
_modifiable = false;
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
ColumnTypeNumeric::ColumnTypeNumeric ()
|
||||
{
|
||||
_type = "numeric";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -36,7 +36,6 @@ extern Context context;
|
|||
ColumnUrgency::ColumnUrgency ()
|
||||
{
|
||||
_name = "urgency";
|
||||
_type = "numeric";
|
||||
_style = "real";
|
||||
_label = STRING_COLUMN_LABEL_URGENCY;
|
||||
_styles = {"real", "integer"};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue