aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2006-08-05 14:38:47 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-08-05 14:38:47 +0800
commita00b972e5a9e3e7131fbf38538d42ecfeca8740c (patch)
tree5064d92515442e1efe5fcb7e28c7891e09c588eb /calendar
parent9f6f6f39aabb789354cf437cf9d8e2f1f470efe3 (diff)
downloadgsoc2013-evolution-a00b972e5a9e3e7131fbf38538d42ecfeca8740c.tar
gsoc2013-evolution-a00b972e5a9e3e7131fbf38538d42ecfeca8740c.tar.gz
gsoc2013-evolution-a00b972e5a9e3e7131fbf38538d42ecfeca8740c.tar.bz2
gsoc2013-evolution-a00b972e5a9e3e7131fbf38538d42ecfeca8740c.tar.lz
gsoc2013-evolution-a00b972e5a9e3e7131fbf38538d42ecfeca8740c.tar.xz
gsoc2013-evolution-a00b972e5a9e3e7131fbf38538d42ecfeca8740c.tar.zst
gsoc2013-evolution-a00b972e5a9e3e7131fbf38538d42ecfeca8740c.zip
Committed Johnny's string changes for search
svn path=/trunk/; revision=32474
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/cal-search-bar.c1
-rw-r--r--calendar/gui/cal-search-bar.h6
3 files changed, 9 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index e894c375a3..254d0491d1 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-04 Johnny Jacob <jjohnny@novell.com>
+
+ * gui/cal-search-bar.h : Changed the CAL_SEARCH items mask for
+ tasks, memos, calendar.
+
2006-07-31 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #335276
diff --git a/calendar/gui/cal-search-bar.c b/calendar/gui/cal-search-bar.c
index 12c6f1018e..437d09f62b 100644
--- a/calendar/gui/cal-search-bar.c
+++ b/calendar/gui/cal-search-bar.c
@@ -47,6 +47,7 @@ enum {
static ESearchBarItem search_option_items[] = {
{ N_("Summary contains"), SEARCH_SUMMARY_CONTAINS, ESB_ITEMTYPE_RADIO },
{ N_("Description contains"), SEARCH_DESCRIPTION_CONTAINS, ESB_ITEMTYPE_RADIO },
+ { N_("Category is"), SEARCH_CATEGORY_IS, ESB_ITEMTYPE_RADIO },
{ N_("Comment contains"), SEARCH_COMMENT_CONTAINS, ESB_ITEMTYPE_RADIO },
{ N_("Location contains"), SEARCH_LOCATION_CONTAINS, ESB_ITEMTYPE_RADIO },
{ N_("Any field contains"), SEARCH_ANY_FIELD_CONTAINS, ESB_ITEMTYPE_RADIO },
diff --git a/calendar/gui/cal-search-bar.h b/calendar/gui/cal-search-bar.h
index 9a5f347841..dfb235a378 100644
--- a/calendar/gui/cal-search-bar.h
+++ b/calendar/gui/cal-search-bar.h
@@ -47,9 +47,9 @@ enum {
};
#define CAL_SEARCH_ALL (0xff)
-#define CAL_SEARCH_CALENDAR_DEFAULT (0x37)
-#define CAL_SEARCH_TASKS_DEFAULT (0x27)
-#define CAL_SEARCH_MEMOS_DEFAULT (0x25)
+#define CAL_SEARCH_CALENDAR_DEFAULT (0x33)
+#define CAL_SEARCH_TASKS_DEFAULT (0x23)
+#define CAL_SEARCH_MEMOS_DEFAULT (0x23)
typedef struct {
ESearchBar search_bar;