From bf463bcd2525782cbeeb9e2c47418bc6dd8fe723 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 13 May 2016 17:23:05 -0400 Subject: [PATCH] CmdReportSummary: Replaced getTrackedIntervals with getTracked --- src/commands/CmdReportSummary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdReportSummary.cpp b/src/commands/CmdReportSummary.cpp index 30584000..d956b5e7 100644 --- a/src/commands/CmdReportSummary.cpp +++ b/src/commands/CmdReportSummary.cpp @@ -46,7 +46,7 @@ int CmdReportSummary ( filter.range = Range (Datetime ("today"), Datetime ("tomorrow")); // Load the data. - auto tracked = getTrackedIntervals (database, rules, filter); + auto tracked = getTracked (database, rules, filter); // Map tags to colors. auto palette = createPalette (rules);