mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Columns
- Removed ColUDA::is_uda override, because it was wrong. Now in the base class a member variable is referenced.
This commit is contained in:
parent
2aa224d278
commit
8d10d81198
5 changed files with 19 additions and 15 deletions
|
@ -50,7 +50,7 @@ public:
|
|||
std::string label () const { return _label; }
|
||||
std::string type () const { return _type; }
|
||||
bool modifiable () const { return _modifiable; }
|
||||
bool is_uda () const { return false; }
|
||||
bool is_uda () const { return _uda; }
|
||||
std::vector <std::string> styles () const { return _styles; }
|
||||
std::vector <std::string> examples () const { return _examples; }
|
||||
|
||||
|
@ -74,6 +74,7 @@ protected:
|
|||
std::string _label;
|
||||
std::string _report;
|
||||
bool _modifiable;
|
||||
bool _uda;
|
||||
std::vector <std::string> _styles;
|
||||
std::vector <std::string> _examples;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue