From 6d628a38d835a41433b18b3ca9c43e8a89ea6410 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 24 Apr 2016 10:13:24 -0400 Subject: [PATCH] CmdReportDay: Loads data --- src/commands/CmdReportDay.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/CmdReportDay.cpp b/src/commands/CmdReportDay.cpp index 4bec0856..13bbba12 100644 --- a/src/commands/CmdReportDay.cpp +++ b/src/commands/CmdReportDay.cpp @@ -44,8 +44,10 @@ int CmdReportDay ( if (! filter.range.started ()) filter.range = Range (Datetime ("today"), Datetime ("tomorrow")); + // Load the data. auto timeline = createTimelineFromData (database, filter); auto tracked = timeline.tracked (rules); + auto excluded = timeline.excluded (rules); // Create a color palette. Palette palette;