mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-04 12:28:35 +02:00
Enhancement
- Broke out the "taskDiff" family of functions into feedback.cpp, which is where all subsequent user feedback text composition will occur.
This commit is contained in:
parent
036aee2a8d
commit
628fbd6b64
4 changed files with 313 additions and 12 deletions
|
@ -161,6 +161,13 @@ void dependencyChainOnComplete (Task&);
|
|||
void dependencyChainOnStart (Task&);
|
||||
void dependencyChainOnModify (Task&, Task&);
|
||||
|
||||
// feedback.cpp
|
||||
bool taskDiff (const Task&, const Task&);
|
||||
std::string taskDifferences (const Task&, const Task&);
|
||||
std::string taskInfoDifferences (const Task&, const Task&);
|
||||
std::string renderAttribute (const std::string&, const std::string&);
|
||||
std::string feedback (const Task&, const Task&);
|
||||
|
||||
// list template
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
template <class T> bool listDiff (const T& left, const T& right)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue