- The modify command no longer claims that a task was modified if no
  changes were applied.
This commit is contained in:
Paul Beckingham 2011-09-11 13:49:07 -04:00
parent 19f598419e
commit 9ada2f554a
3 changed files with 26 additions and 25 deletions

View file

@ -749,9 +749,8 @@ void Task::removeDependency (const std::string& uuid)
std::string combined;
join (combined, ",", deps);
set ("depends", combined);
recalc_urgency = true;
}
recalc_urgency = true;
}
////////////////////////////////////////////////////////////////////////////////
@ -762,8 +761,6 @@ void Task::removeDependency (int id)
removeDependency (uuid);
else
throw std::string (STRING_TASK_DEPEND_NO_UUID);
recalc_urgency = true;
}
////////////////////////////////////////////////////////////////////////////////