From 5e764dcac939cf6e3386234304bfa1bac862f8cf Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 12 Jul 2000 22:59:25 +0000 Subject: From addressbook/ChangeLog: 2000-07-12 Christopher James Lahey * backend/pas/pas-backend-file.c: Do case insensitive compares. * addressbook/gui/component/addressbook.c: Make quick search search both name and company name. From camel/ChangeLog: 2000-07-12 Christopher James Lahey * camel-folder-search.c, providers/imap/camel-imap-store.c: Changed from strstrcase to e_strstrcase. * string-utils.c, string-utils.h: Removed strstrcase (in favor of e_strstrcase in e-util/e-util.c.) From e-util/ChangeLog: 2000-07-12 Christopher James Lahey * e-util.c, e-util.h: Added e_strstrcase function. svn path=/trunk/; revision=4127 --- addressbook/gui/component/addressbook.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'addressbook/gui') diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index e079550d92..7295682bf7 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -426,8 +426,8 @@ search_entry_activated (GtkWidget* widget, gpointer user_data) if (search_word && strlen (search_word)) search_query = g_strdup_printf ( - "(contains \"full_name\" \"%s\")", - search_word); + "(or (contains \"full_name\" \"%s\") (contains \"org\" \"%s\"))", + search_word, search_word); else search_query = g_strdup ( "(contains \"full_name\" \"\")"); -- cgit v1.2.3