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