CmdAnnotate: Code cleanup

This commit is contained in:
Paul Beckingham 2017-01-28 17:38:02 -05:00
parent 82cd74906b
commit e5646726c1

View file

@ -99,7 +99,7 @@ int CmdAnnotate::execute (std::string&)
&& confirm (STRING_CMD_ANNO_CONFIRM_R)) || && confirm (STRING_CMD_ANNO_CONFIRM_R)) ||
context.config.getBoolean ("recurrence.confirmation")) context.config.getBoolean ("recurrence.confirmation"))
{ {
std::vector <Task> siblings = context.tdb2.siblings (task); auto siblings = context.tdb2.siblings (task);
for (auto& sibling : siblings) for (auto& sibling : siblings)
{ {
sibling.modify (Task::modAnnotate, true); sibling.modify (Task::modAnnotate, true);
@ -126,7 +126,7 @@ int CmdAnnotate::execute (std::string&)
} }
// Now list the project changes. // Now list the project changes.
for (auto& change : projectChanges) for (const auto& change : projectChanges)
if (change.first != "") if (change.first != "")
context.footnote (change.second); context.footnote (change.second);