Bug
- 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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user