aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog9
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index ecc67cc7dd..6b2bb0c890 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,14 @@
2004-03-30 Chris Toshok <toshok@ximian.com>
+ [ part of the fix for #51977, the other part is in e-d-s ]
+
+ * gui/widgets/e-addressbook-view.c (search_activated): the name of
+ the category list property has changed from "category" to
+ "category" list in 1.5. track the change here to get category
+ searching working again.
+
+2004-03-30 Chris Toshok <toshok@ximian.com>
+
[ part of the fix for #54528, the other part is in e-d-s ]
* importers/evolution-vcard-importer.c (process_item_fn): get and
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index 0297268f5b..e17e147b9f 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -1559,7 +1559,7 @@ search_activated (ESearchBar *esb, EABView *v)
} else {
master_list = get_master_list ();
category_name = e_categories_master_list_nth (master_list, subid);
- search_query = g_strdup_printf ("(is \"category\" \"%s\")", category_name);
+ search_query = g_strdup_printf ("(is \"category_list\" \"%s\")", category_name);
}
break;
default: