mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #808
- Fixed bug #808, which generated compiler warnings on Solarix (thanks to Owen Clarke).
This commit is contained in:
parent
0ee1f9c1c6
commit
7e3a207d63
4 changed files with 4 additions and 11 deletions
|
@ -158,6 +158,8 @@
|
||||||
the deletion of a recurring task (thanks to Matt Kraai).
|
the deletion of a recurring task (thanks to Matt Kraai).
|
||||||
+ Fixed bug #807, which caused a lack of Lua to prevent tests from building
|
+ Fixed bug #807, which caused a lack of Lua to prevent tests from building
|
||||||
(thanks to Owen Clarke).
|
(thanks to Owen Clarke).
|
||||||
|
+ Fixed bug #808, which generated compiler warnings on Solarix (thanks to
|
||||||
|
Owen Clarke).
|
||||||
|
|
||||||
# Untracked Bugs, biggest first.
|
# Untracked Bugs, biggest first.
|
||||||
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
class Transport {
|
class Transport {
|
||||||
public:
|
public:
|
||||||
Transport (const Uri&);
|
Transport (const Uri&);
|
||||||
~Transport ();
|
virtual ~Transport ();
|
||||||
|
|
||||||
static Transport* getTransport(const Uri&);
|
static Transport* getTransport(const Uri&);
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ public:
|
||||||
Column (const Column&);
|
Column (const Column&);
|
||||||
Column& operator= (const Column&);
|
Column& operator= (const Column&);
|
||||||
bool operator== (const Column&) const; // TODO Is this necessary?
|
bool operator== (const Column&) const; // TODO Is this necessary?
|
||||||
~Column ();
|
virtual ~Column ();
|
||||||
|
|
||||||
std::string style () const { return _style; }
|
std::string style () const { return _style; }
|
||||||
std::string label () const { return _label; }
|
std::string label () const { return _label; }
|
||||||
|
|
|
@ -333,15 +333,6 @@ void Command::filter (std::vector <Task>& output)
|
||||||
// term, then completed.data does not need to be loaded.
|
// term, then completed.data does not need to be loaded.
|
||||||
bool Command::filter_shortcut (const A3& filter)
|
bool Command::filter_shortcut (const A3& filter)
|
||||||
{
|
{
|
||||||
/**/
|
|
||||||
if (filter.size () >= 3)
|
|
||||||
{
|
|
||||||
std::cout << "# filter[0] " << filter[0]._raw << "\n"
|
|
||||||
<< "# filter[1] " << filter[1]._raw << "\n"
|
|
||||||
<< "# filter[2] " << filter[2]._raw << "\n";
|
|
||||||
}
|
|
||||||
/**/
|
|
||||||
|
|
||||||
// Postfix: <status> <"pending"> <=>
|
// Postfix: <status> <"pending"> <=>
|
||||||
// 0 1 2
|
// 0 1 2
|
||||||
if (filter.size () >= 3 &&
|
if (filter.size () >= 3 &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue