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 ()
|
ColumnID::ColumnID ()
|
||||||
{
|
{
|
||||||
_name = "id";
|
_name = "id";
|
||||||
_type = "numeric";
|
|
||||||
_style = "number";
|
_style = "number";
|
||||||
_label = STRING_COLUMN_LABEL_ID;
|
_label = STRING_COLUMN_LABEL_ID;
|
||||||
_modifiable = false;
|
_modifiable = false;
|
||||||
|
|
|
@ -37,7 +37,6 @@ extern Context context;
|
||||||
ColumnIMask::ColumnIMask ()
|
ColumnIMask::ColumnIMask ()
|
||||||
{
|
{
|
||||||
_name = "imask";
|
_name = "imask";
|
||||||
_type = "numeric";
|
|
||||||
_style = "number";
|
_style = "number";
|
||||||
_label = STRING_COLUMN_LABEL_MASK_IDX;
|
_label = STRING_COLUMN_LABEL_MASK_IDX;
|
||||||
_modifiable = false;
|
_modifiable = false;
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
ColumnTypeNumeric::ColumnTypeNumeric ()
|
ColumnTypeNumeric::ColumnTypeNumeric ()
|
||||||
{
|
{
|
||||||
|
_type = "numeric";
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -36,7 +36,6 @@ extern Context context;
|
||||||
ColumnUrgency::ColumnUrgency ()
|
ColumnUrgency::ColumnUrgency ()
|
||||||
{
|
{
|
||||||
_name = "urgency";
|
_name = "urgency";
|
||||||
_type = "numeric";
|
|
||||||
_style = "real";
|
_style = "real";
|
||||||
_label = STRING_COLUMN_LABEL_URGENCY;
|
_label = STRING_COLUMN_LABEL_URGENCY;
|
||||||
_styles = {"real", "integer"};
|
_styles = {"real", "integer"};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue