- ::modify was setting the wrong attribute value, namely the original, not the
  one that had passed through the expression evaluator's intestines.
This commit is contained in:
Paul Beckingham 2014-06-02 22:22:39 -04:00
parent 870e45be0d
commit ac07189941

View file

@ -2126,7 +2126,7 @@ void Task::modify (modType type, bool text_required /* = false */)
if (column->validate (value2))
{
context.debug (label + name + " <-- " + value2 + " <-- " + value);
(*this).set (name, value);
(*this).set (name, value2);
++modCount;
}
else