Enhancement - en passant "done"

- When marking task(s) as done, it is now possible to modify them
  at the same time.
This commit is contained in:
Paul Beckingham 2009-05-08 00:25:30 -04:00
parent b23bad9a5b
commit 5cf33105a3
3 changed files with 45 additions and 15 deletions

View file

@ -280,6 +280,7 @@ bool TDB::completeT (const T& t)
for (it = all.begin (); it != all.end (); ++it)
if (task.getId () == it->getId ())
{
*it = t;
it->setStatus (T::completed);
char endTime[16];