- Lack of Task default constructor, copy constructor and operator=
  implementation details caused tasks stored in an STL container to
  lose their cached urgency value.
- Info report now specifically formats urgency values, whereas the
  default formatting adds justification spacing.
This commit is contained in:
Paul Beckingham 2011-05-13 17:54:08 -04:00
parent 6fb3bc5b03
commit 3d69f70d66
2 changed files with 15 additions and 11 deletions

View file

@ -619,7 +619,7 @@ int handleInfo (std::string& outs)
// Task::urgency
row = view.addRow ();
view.set (row, 0, "Urgency");
view.set (row, 1, task->urgency ());
view.set (row, 1, trimLeft (format (task->urgency (), 4, 4)));
// Create a second table, containing undo log change details.
ViewText journal;