- Fix initialization of Task variables when parsing from a string.
- Correction on default colors.
This commit is contained in:
Louis-Claude Canon 2012-07-09 09:48:35 +02:00 committed by Paul Beckingham
parent c8ce91e4be
commit 95df0baeae
3 changed files with 4 additions and 2 deletions

View file

@ -150,6 +150,8 @@ Task::Task (const std::string& input)
id = 0;
urgency_value = 0.0;
recalc_urgency = true;
is_blocked = false;
is_blocking = false;
parse (input);
}