From 1cbada6bc51746d0df285fb06870f8e251660802 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 24 May 2014 23:52:06 -0400 Subject: [PATCH] CmdModify - Converted from A3 to Filter. --- src/commands/CmdModify.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/CmdModify.cpp b/src/commands/CmdModify.cpp index 7c810d826..29c276d3f 100644 --- a/src/commands/CmdModify.cpp +++ b/src/commands/CmdModify.cpp @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -52,8 +53,9 @@ int CmdModify::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);