From 9fd9e8e3a8e6ef2468bbed6c51ef74dcac3c3278 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 22 Nov 2010 23:11:45 -0500 Subject: [PATCH] Recurrence - Child tasks now have their own entry date, instead of inheriting it from the parent. This improves the ability to report new tasks in the burndown charts, history report. --- src/recur.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/recur.cpp b/src/recur.cpp index c54955f65..9e149e82d 100644 --- a/src/recur.cpp +++ b/src/recur.cpp @@ -100,6 +100,7 @@ void handleRecurrence () Task rec (*t); // Clone the parent. rec.set ("uuid", uuid ()); // New UUID. rec.set ("parent", t->get ("uuid")); // Remember mom. + rec.setEntry (); // New entry date. char dueDate[16]; sprintf (dueDate, "%u", (unsigned int) d->toEpoch ());