- Recurring faintly working without (the very necessary) mask attribute

This commit is contained in:
Paul Beckingham
2008-07-08 01:40:07 -04:00
parent 0e611eda19
commit ba342eeeb6
9 changed files with 3352 additions and 3141 deletions

View File

@@ -424,7 +424,8 @@ void T::parse (const std::string& line)
mStatus = line[37] == '+' ? completed
: line[37] == 'X' ? deleted
: pending;
: line[37] == 'r' ? recurring
: pending;
size_t openTagBracket = line.find ("[");
size_t closeTagBracket = line.find ("]", openTagBracket);