mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Cleanup: Don't use string literals when character literals are needed
This commit is contained in:
parent
99a7cfceac
commit
35e518cbc2
58 changed files with 372 additions and 374 deletions
|
@ -2144,12 +2144,12 @@ void Task::modify (modType type, bool text_required /* = false */)
|
|||
|
||||
case modPrepend:
|
||||
context.debug (label + "description <-- '" + text + "' + description");
|
||||
set ("description", text + " " + get ("description"));
|
||||
set ("description", text + ' ' + get ("description"));
|
||||
break;
|
||||
|
||||
case modAppend:
|
||||
context.debug (label + "description <-- description + '" + text + "'");
|
||||
set ("description", get ("description") + " " + text);
|
||||
set ("description", get ("description") + ' ' + text);
|
||||
break;
|
||||
|
||||
case modAnnotate:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue