From 52fb6abb9b2651425656c19bddcc0b2a3aa99f85 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 21 Jun 2009 12:01:30 -0400 Subject: [PATCH] Enhancement - tips - Added new tips file, in the correct format (unix fortune), with dummy entries. If we are to support a "task tip" command in future versions, we need to start gathering the tips now. --- i18n/tips.en-US | 5 +++++ src/Context.cpp | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 i18n/tips.en-US diff --git a/i18n/tips.en-US b/i18n/tips.en-US new file mode 100644 index 000000000..2668abb7e --- /dev/null +++ b/i18n/tips.en-US @@ -0,0 +1,5 @@ +% +first tip +% +second tip +% diff --git a/src/Context.cpp b/src/Context.cpp index cc9abda8d..0fd1a9908 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -573,11 +573,6 @@ void Context::autoFilter (Task& t, Filter& f) { f.push_back (Att ("description", "has", *word)); debug ("auto filter: " + att->first + ".has:" + *word); - -/* - f.push_back (Att ("annotation_*", "has", *word)); - debug ("auto filter: annotation_*.has:" + *word); -*/ } }