Bug #TW-255

- #TW-255 'Mask' instead of 'iMask' shown in info report (thanks to Benjamin
          Weber)
This commit is contained in:
Paul Beckingham 2014-02-09 13:25:36 -05:00
parent 41e8a8b20d
commit 28fe7420fc
2 changed files with 7 additions and 2 deletions

View file

@ -194,14 +194,17 @@ int CmdInfo::execute (std::string& output)
view.set (row, 1, task->get ("recur"));
}
// parent
if (task->has ("parent"))
{
// parent
row = view.addRow ();
view.set (row, 0, STRING_COLUMN_LABEL_PARENT);
view.set (row, 1, task->get ("parent"));
}
// mask
// mask
if (task->has ("mask"))
{
row = view.addRow ();
view.set (row, 0, STRING_COLUMN_LABEL_MASK);
view.set (row, 1, task->get ("mask"));