- Fixed problem with backlog - TDB2::modify should call backlog.add_task
  but was calling backlog.modify_task.
This commit is contained in:
Paul Beckingham 2011-08-27 20:56:41 -04:00
parent d22871b265
commit c23f663408

View file

@ -480,7 +480,7 @@ void TDB2::modify (const Task& task)
undo.add_line ("---\n");
// Add modified task to backlog.
backlog.modify_task (task);
backlog.add_task (task);
}
////////////////////////////////////////////////////////////////////////////////