aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-04-28 09:51:40 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-04-28 09:51:40 +0800
commit7b7c2d9828f1907b709a4cc9566777efbf2fa487 (patch)
treec8b169fa0de132a8a9e6658ebc856dbe5adda036 /calendar
parent8bfc8af79905e6d934a553ff6812005c8b60bfc5 (diff)
downloadgsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.tar
gsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.tar.gz
gsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.tar.bz2
gsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.tar.lz
gsoc2013-evolution-7b7c2d9828f1907b709a4cc9566777efbf2fa487.tar.xz
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')
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/cal-search-bar.c3
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 }