mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-09 00:30:36 +02:00
Replace direct Task.data access with a temp getter (syntactic refactor)
Now this getter, `data_removeme`, can easily be grepped out and replaced, one usage at a time in small PRs.
This commit is contained in:
parent
3a00956144
commit
dede40bc4e
10 changed files with 29 additions and 26 deletions
|
@ -128,7 +128,7 @@ int CmdDenotate::execute (std::string&)
|
|||
}
|
||||
}
|
||||
|
||||
if (before.data != task.data)
|
||||
if (before.data_removeme () != task.data_removeme ())
|
||||
{
|
||||
auto question = format ("Denotate task {1} '{2}'?",
|
||||
task.identifier (true),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue