diff options
author | JP Rosevear <jpr@ximian.com> | 2004-04-28 09:51:40 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-04-28 09:51:40 +0800 |
commit | 7b7c2d9828f1907b709a4cc9566777efbf2fa487 (patch) | |
tree | c8b169fa0de132a8a9e6658ebc856dbe5adda036 /calendar/gui/cal-search-bar.c | |
parent | 8bfc8af79905e6d934a553ff6812005c8b60bfc5 (diff) | |
download | gsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.tar.gz gsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.tar.zst gsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.zip |
disable comment searching which is currently useless
004-04-27 JP Rosevear <jpr@ximian.com>
* gui/cal-search-bar.c: disable comment searching which is
currently useless
svn path=/trunk/; revision=25648
Diffstat (limited to 'calendar/gui/cal-search-bar.c')
-rw-r--r-- | calendar/gui/cal-search-bar.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/cal-search-bar.c b/calendar/gui/cal-search-bar.c index 74a1dc5998..876b0523f1 100644 --- a/calendar/gui/cal-search-bar.c +++ b/calendar/gui/cal-search-bar.c @@ -45,11 +45,14 @@ enum { SEARCH_CATEGORY_IS, }; +/* Comments are disabled because they are kind of useless right now, see bug 33247 */ static ESearchBarItem search_option_items[] = { { N_("Any field contains"), SEARCH_ANY_FIELD_CONTAINS, NULL }, { N_("Summary contains"), SEARCH_SUMMARY_CONTAINS, NULL }, { N_("Description contains"), SEARCH_DESCRIPTION_CONTAINS, NULL }, +#if 0 { N_("Comment contains"), SEARCH_COMMENT_CONTAINS, NULL }, +#endif { N_("Location contains"), SEARCH_LOCATION_CONTAINS, NULL }, { N_("Category is"), SEARCH_CATEGORY_IS, NULL }, { NULL, -1, NULL } |