From 23f02b2268149d59f14caf795b1476be764b800a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 12 May 2014 00:26:41 -0400 Subject: [PATCH] Command - Marked obsolete methods. --- src/commands/Command.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/commands/Command.cpp b/src/commands/Command.cpp index bd5f155fd..7675029cf 100644 --- a/src/commands/Command.cpp +++ b/src/commands/Command.cpp @@ -285,6 +285,7 @@ bool Command::displays_id () const // Filter a specific list of tasks. void Command::filter (const std::vector & input, std::vector & output) { + context.debug ("OBSOLETE Command::filter"); context.timer_filter.start (); A3 filt = context.a3.extract_filter (); @@ -319,6 +320,7 @@ void Command::filter (const std::vector & input, std::vector & outpu // Filter all tasks. void Command::filter (std::vector & output) { + context.debug ("OBSOLETE Command::filter"); context.timer_filter.start (); A3 filt = context.a3.extract_filter (); filt.dump ("extract_filter"); @@ -383,6 +385,7 @@ void Command::filter (std::vector & output) // term, then completed.data does not need to be loaded. bool Command::filter_shortcut (const A3& filter) { + context.debug ("OBSOLETE Command::filter_shortcut"); // Postfix: <"pending"> <=> // 0 1 2 if (filter.size () >= 3 && @@ -483,6 +486,7 @@ void Command::modify_task ( // Disaster avoidance mechanism. void Command::safety () { + context.debug ("OBSOLETE Command::safety"); if (! _read_only) { A3 write_filter = context.a3.extract_filter ();