mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Code Cleanup - undo
- Improved description of most recent change. - Added timestamp of most recent change.
This commit is contained in:
parent
e7ba2ab76d
commit
21c3a0ef48
2 changed files with 19 additions and 18 deletions
22
src/util.cpp
22
src/util.cpp
|
@ -498,35 +498,33 @@ std::string taskDifferences (const Task& before, const Task& after)
|
|||
// Now start generating a description of the differences.
|
||||
std::stringstream out;
|
||||
foreach (name, beforeOnly)
|
||||
out << *name
|
||||
<< " was deleted. ";
|
||||
out << " - "
|
||||
<< *name
|
||||
<< " was deleted\n";
|
||||
|
||||
foreach (name, afterOnly)
|
||||
out << *name
|
||||
out << " - "
|
||||
<< *name
|
||||
<< " was set to '"
|
||||
<< after.get (*name)
|
||||
<< "'. ";
|
||||
<< "'\n";
|
||||
|
||||
foreach (name, beforeAtts)
|
||||
if (*name != "uuid" &&
|
||||
after.get (*name) != "" &&
|
||||
before.get (*name) != after.get (*name))
|
||||
out << *name
|
||||
out << " - "
|
||||
<< *name
|
||||
<< " was changed from '"
|
||||
<< before.get (*name)
|
||||
<< "' to '"
|
||||
<< after.get (*name)
|
||||
<< "'. ";
|
||||
<< "'\n";
|
||||
|
||||
// Can't just say nothing.
|
||||
if (out.str ().length () == 0)
|
||||
out << "No changes were made. ";
|
||||
out << " - No changes were made\n";
|
||||
|
||||
/*
|
||||
std::stringstream decorated;
|
||||
decorated << "Task " << before.id << " was modified. " << out.str ();
|
||||
return decorated.str ();
|
||||
*/
|
||||
return out.str ();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue