- Marked certain uses of ucFirst as l10n-safe.
This commit is contained in:
Paul Beckingham 2014-09-06 16:11:54 -04:00
parent de5f41c6c5
commit ecc528cbf3
2 changed files with 2 additions and 2 deletions

View file

@ -115,7 +115,7 @@ int CmdInfo::execute (std::string& output)
view.set (row, 0, STRING_COLUMN_LABEL_ID);
view.set (row, 1, (task->id ? format (task->id) : "-"));
std::string status = ucFirst (Task::statusToText (task->getStatus ()));
std::string status = ucFirst (Task::statusToText (task->getStatus ())); // L10N safe ucFirst.
// description
Color c;