diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/cal-search-bar.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ebfa4655fa..bceac87e67 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,10 @@ 2004-04-27 JP Rosevear <jpr@ximian.com> + * gui/cal-search-bar.c: disable comment searching which is + currently useless + +2004-04-27 JP Rosevear <jpr@ximian.com> + Fixes #52270 and #57593 * gui/e-cal-model-tasks.c (ecmt_set_value_at): remove checks for 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 } |