From 9f7bc7b11c25011cfaf7b9ead3f40c9f9692a0d4 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 24 May 2014 23:53:09 -0400 Subject: [PATCH] CmdStart - Converted from A3 to Filter. --- src/commands/CmdStart.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/CmdStart.cpp b/src/commands/CmdStart.cpp index d36fb96ea..61889d473 100644 --- a/src/commands/CmdStart.cpp +++ b/src/commands/CmdStart.cpp @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -52,8 +53,9 @@ int CmdStart::execute (std::string& output) int count = 0; // Apply filter. + Filter filter; std::vector filtered; - filter (filtered); + filter.subset (filtered); if (filtered.size () == 0) { context.footnote (STRING_FEEDBACK_NO_TASKS_SP);