From 4fe23fcfcdd2ef92e8159cf48487ebb4e48d04b2 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 1 Oct 2015 08:00:25 +0200 Subject: [PATCH] context: Do not use context for reports not meant for direct human consumption --- src/commands/CmdIDs.cpp | 10 +++++----- src/commands/CmdProjects.cpp | 2 +- src/commands/CmdTags.cpp | 2 +- src/commands/CmdUnique.cpp | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/commands/CmdIDs.cpp b/src/commands/CmdIDs.cpp index e6b749f02..ac863fe14 100644 --- a/src/commands/CmdIDs.cpp +++ b/src/commands/CmdIDs.cpp @@ -47,7 +47,7 @@ CmdIDs::CmdIDs () _read_only = true; _displays_id = true; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false; @@ -140,7 +140,7 @@ CmdCompletionIds::CmdCompletionIds () _read_only = true; _displays_id = true; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false; @@ -179,7 +179,7 @@ CmdZshCompletionIds::CmdZshCompletionIds () _read_only = true; _displays_id = true; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false; @@ -219,7 +219,7 @@ CmdUUIDs::CmdUUIDs () _read_only = true; _displays_id = false; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false; @@ -256,7 +256,7 @@ CmdCompletionUuids::CmdCompletionUuids () _read_only = true; _displays_id = false; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false; diff --git a/src/commands/CmdProjects.cpp b/src/commands/CmdProjects.cpp index cd118ede7..27cd0ce9d 100644 --- a/src/commands/CmdProjects.cpp +++ b/src/commands/CmdProjects.cpp @@ -169,7 +169,7 @@ CmdCompletionProjects::CmdCompletionProjects () _read_only = true; _displays_id = false; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false; diff --git a/src/commands/CmdTags.cpp b/src/commands/CmdTags.cpp index 7539436bf..f04de92c2 100644 --- a/src/commands/CmdTags.cpp +++ b/src/commands/CmdTags.cpp @@ -150,7 +150,7 @@ CmdCompletionTags::CmdCompletionTags () _read_only = true; _displays_id = false; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false; diff --git a/src/commands/CmdUnique.cpp b/src/commands/CmdUnique.cpp index 193cc4a27..3a2fca135 100644 --- a/src/commands/CmdUnique.cpp +++ b/src/commands/CmdUnique.cpp @@ -47,7 +47,7 @@ CmdUnique::CmdUnique () _read_only = true; _displays_id = true; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = true;