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