mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 04:27:20 +02:00
ColTypeDate: Renamed 'ColDate' to 'ColTypeDate'
- Renamed files ColDate* to ColTypeDate*. - Renamed objects ColumnDate* to ColumnTypeDate*. - This is mainly to make way for ColType{Duration,String,Numeric}, while leaving ColString untouched. ColString is used only for ViewText columns, but may soon be replaced by ColTypeString. Unknown.
This commit is contained in:
parent
6baff92b5a
commit
2a6ce539d0
12 changed files with 27 additions and 27 deletions
|
@ -75,7 +75,7 @@ void ColumnStart::measure (Task& task, unsigned int& minimum, unsigned int& maxi
|
|||
minimum = maximum = 0;
|
||||
}
|
||||
else
|
||||
ColumnDate::measure (task, minimum, maximum);
|
||||
ColumnTypeDate::measure (task, minimum, maximum);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ void ColumnStart::render (
|
|||
context.config.get ("active.indicator"), width)));
|
||||
}
|
||||
else
|
||||
ColumnDate::render (lines, task, width, color);
|
||||
ColumnTypeDate::render (lines, task, width, color);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue