feedback: Use task identifiers instead of IDs

During construction of a feedback string for a dependency change,
a list of IDs of the dependencies was used. However, if the tasks
being referred to are already deleted / completed, their respective
IDs are all 0s.

Use shortened UUIDs in such case.
This commit is contained in:
Tomas Babej
2016-04-03 11:05:32 +02:00
committed by Paul Beckingham
parent 6f819af367
commit f3147a512c
3 changed files with 45 additions and 22 deletions

View File

@@ -142,6 +142,7 @@ public:
void removeDependency (const std::string&);
void getDependencies (std::vector <int>&) const;
void getDependencies (std::vector <std::string>&) const;
void getDependencies (std::vector <Task>&) const;
void getUDAOrphans (std::vector <std::string>&) const;