mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Enhancement - recurring tasks
- Implemented handleRecurringTasks. - Implemented TDB::nextId.
This commit is contained in:
parent
840c61cbbf
commit
4d43b77441
4 changed files with 44 additions and 39 deletions
|
@ -196,6 +196,7 @@ int TDB::loadPending (std::vector <Task>& tasks, Filter& filter)
|
|||
|
||||
try
|
||||
{
|
||||
mId = 1;
|
||||
char line[T_LINE_MAX];
|
||||
foreach (location, mLocations)
|
||||
{
|
||||
|
@ -425,6 +426,12 @@ int TDB::gc ()
|
|||
return count;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
int TDB::nextId ()
|
||||
{
|
||||
return mId++;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
FILE* TDB::openAndLock (const std::string& file)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue