mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-04 01:27:20 +02:00
Task
- The 'recur' attribute should be stored in raw form.
This commit is contained in:
parent
24e2f24301
commit
3727d2f09c
1 changed files with 3 additions and 1 deletions
|
@ -2036,7 +2036,7 @@ void Task::modify (modType type, bool text_required /* = false */)
|
||||||
column->type () == "duration")
|
column->type () == "duration")
|
||||||
{
|
{
|
||||||
// TODO Store the raw value, for 'recur', else result.
|
// TODO Store the raw value, for 'recur', else result.
|
||||||
|
/*
|
||||||
Eval e;
|
Eval e;
|
||||||
e.addSource (domSource);
|
e.addSource (domSource);
|
||||||
e.addSource (namedDates);
|
e.addSource (namedDates);
|
||||||
|
@ -2050,6 +2050,8 @@ void Task::modify (modType type, bool text_required /* = false */)
|
||||||
v.cast (Variant::type_duration);
|
v.cast (Variant::type_duration);
|
||||||
v.cast (Variant::type_string);
|
v.cast (Variant::type_string);
|
||||||
set (name, v);
|
set (name, v);
|
||||||
|
*/
|
||||||
|
set (name, value);
|
||||||
++modCount;
|
++modCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue