mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
ColTypeDuration: Removed obsolete code
This commit is contained in:
parent
197b440cc2
commit
1fced1b8a9
2 changed files with 0 additions and 19 deletions
|
@ -43,21 +43,6 @@ ColumnTypeDuration::ColumnTypeDuration ()
|
|||
_type = "duration";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Set the minimum and maximum widths for the value.
|
||||
void ColumnTypeDuration::measure (Task& task, unsigned int& minimum, unsigned int& maximum)
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void ColumnTypeDuration::render (
|
||||
std::vector <std::string>& lines,
|
||||
Task& task,
|
||||
int width,
|
||||
Color& color)
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void ColumnTypeDuration::modify (Task& task, const std::string& value)
|
||||
{
|
||||
|
|
|
@ -27,18 +27,14 @@
|
|||
#ifndef INCLUDED_COLTYPEDURATION
|
||||
#define INCLUDED_COLTYPEDURATION
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <Column.h>
|
||||
#include <Color.h>
|
||||
#include <Task.h>
|
||||
|
||||
class ColumnTypeDuration : public Column
|
||||
{
|
||||
public:
|
||||
ColumnTypeDuration ();
|
||||
virtual void measure (Task&, unsigned int&, unsigned int&);
|
||||
virtual void render (std::vector <std::string>&, Task&, int, Color&);
|
||||
virtual void modify (Task&, const std::string&);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue