Enhancements - version command

- Implemented version command.
- Corrected config handling in version command.
This commit is contained in:
Paul Beckingham 2009-06-09 23:58:05 -04:00
parent f3f77a4c78
commit 0449f9e0a2
6 changed files with 26 additions and 26 deletions

View file

@ -56,8 +56,9 @@ extern Context context;
////////////////////////////////////////////////////////////////////////////////
// Scans all tasks, and for any recurring tasks, determines whether any new
// child tasks need to be generated to fill gaps.
void handleRecurrence (TDB& tdb, std::vector <T>& tasks)
void handleRecurrence (std::vector <T2>& tasks)
{
/*
std::vector <T> modified;
// Look at all tasks and find any recurring ones.
@ -134,6 +135,7 @@ void handleRecurrence (TDB& tdb, std::vector <T>& tasks)
}
tasks = modified;
*/
}
////////////////////////////////////////////////////////////////////////////////