- Fixed bug #808, which generated compiler warnings on Solarix (thanks to
  Owen Clarke).
This commit is contained in:
Paul Beckingham 2011-07-26 21:40:31 -04:00
parent 0ee1f9c1c6
commit 7e3a207d63
4 changed files with 4 additions and 11 deletions

View file

@ -158,6 +158,8 @@
the deletion of a recurring task (thanks to Matt Kraai).
+ Fixed bug #807, which caused a lack of Lua to prevent tests from building
(thanks to Owen Clarke).
+ Fixed bug #808, which generated compiler warnings on Solarix (thanks to
Owen Clarke).
# Untracked Bugs, biggest first.
+ Fixed bug that required the '%YAML' prologue in a YAML import.

View file

@ -35,7 +35,7 @@
class Transport {
public:
Transport (const Uri&);
~Transport ();
virtual ~Transport ();
static Transport* getTransport(const Uri&);

View file

@ -43,7 +43,7 @@ public:
Column (const Column&);
Column& operator= (const Column&);
bool operator== (const Column&) const; // TODO Is this necessary?
~Column ();
virtual ~Column ();
std::string style () const { return _style; }
std::string label () const { return _label; }

View file

@ -333,15 +333,6 @@ void Command::filter (std::vector <Task>& output)
// term, then completed.data does not need to be loaded.
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"> <=>
// 0 1 2
if (filter.size () >= 3 &&