mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
ColTypeString: Removed obsolete code
This commit is contained in:
parent
8be1c53d92
commit
c25f312477
2 changed files with 0 additions and 22 deletions
|
@ -43,24 +43,6 @@ ColumnTypeString::ColumnTypeString ()
|
|||
_type = "string";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Set the minimum and maximum widths for the value.
|
||||
void ColumnTypeString::measure (
|
||||
Task& task,
|
||||
unsigned int& minimum,
|
||||
unsigned int& maximum)
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void ColumnTypeString::render (
|
||||
std::vector <std::string>& lines,
|
||||
Task& task,
|
||||
int width,
|
||||
Color& color)
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void ColumnTypeString::modify (Task& task, const std::string& value)
|
||||
{
|
||||
|
|
|
@ -27,18 +27,14 @@
|
|||
#ifndef INCLUDED_COLTYPESTRING
|
||||
#define INCLUDED_COLTYPESTRING
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <Column.h>
|
||||
#include <Color.h>
|
||||
#include <Task.h>
|
||||
|
||||
class ColumnTypeString : public Column
|
||||
{
|
||||
public:
|
||||
ColumnTypeString ();
|
||||
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